function lfds700_misc_library_cleanup
Jump to navigation
Jump to search
Source Files
└───liblfds700 ├───inc │ └───liblfds700 │ lfds700_misc.h └───src └───llfds700_liblfds lfds700_misc_cleanup.c
Prototype
void lfds700_misc_library_cleanup( void );
Notes
This function cleans up and closes down the liblfds library. In fact, in 7.0.0, this function is a placeholder and does no work.
Example
#include "liblfds700.h" int main() { lfds700_misc_library_init_valid_on_current_logical_core(); lfds700_misc_library_cleanup(); return( EXIT_SUCCESS ); }