Difference between revisions of "r7.1.1:Function libtest results cleanup"

From liblfds.org
Jump to navigation Jump to search
m (1 revision imported)
 
(No difference)

Latest revision as of 20:16, 17 February 2017

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