function libtest_results_cleanup

From liblfds.org
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