Truxton stop
Jump to navigation
Jump to search
Frees any resources used by Truxton. It should be the last call before exitting your program.
Syntax
void truxton_stop( void );
Sample
void main()
{
char version[256];
truxton_start();
uint64_t truxton = truxton_create();
truxton_get_version( truxton, version, sizeof(version) );
printf( "%s\n", version );
truxton_destroy( truxton );
truxton_stop();
}