function libtest_testsuite_cleanup

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

Source Files

└── test_and_benchmark
    └── libtest
        ├── inc
        │   └── libtest
        │       └── libtest_testsuite.h
        └── src
            └── libshared_memory
                └── libtest_testsuite_cleanup.c

Opaque Structures

struct libtest_testsuite_state;

Prototype

void libtest_testsuite_cleanup( struct libtest_testsuite_state *ts );

Parameters

struct libtest_testsuite_state *ts

A pointer to an initialized struct libtest_testsuite_state.

Notes

Cleanups an initialized struct libtest_testsuite_state.

Example

See Also