function libtest_results_cleanup

From liblfds.org
Revision as of 22:48, 26 May 2016 by Admin (talk | contribs) (Created page with "{{DISPLAYTITLE:function libtest_results_cleanup}} ==Source Files== └── test_and_benchmark └── libtest ├── inc │ └── libtest...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source Files

└── test_and_benchmark
    └── libtest
        ├── inc
        │   └── libtest
        │       └── libtest_results.h
        └── src
            └── libshared_results
                └── libtest_results_cleanup.c

Opaque Structures

struct libtest_results_state;

Prototype

void libtest_results_cleanup( struct libtest_results_state *rs );

Parameters

struct libtest_results_state *rs

A pointer to an initialized struct libtest_results_state.

Notes

This function cleans up the struct libtest_results_state, after which it is ready to be passed again to libtest_results_init, should the user wish to re-use the structure.

Example

See Also