]> pd.if.org Git - liblfds/blob - liblfds/liblfds7.1.0/test_and_benchmark/test/src/callbacks.c
Initial import (all versions, including the new 7.1.0)
[liblfds] / liblfds / liblfds7.1.0 / test_and_benchmark / test / src / callbacks.c
1 /***** includes *****/
2 #include "internal.h"
3
4
5
6
7
8 /****************************************************************************/
9 void callback_test_start( char *test_name )
10 {
11   assert( test_name != NULL );
12
13   printf( "%s...", test_name );
14   fflush( stdout );
15
16   return;
17 }
18
19
20
21
22
23 /****************************************************************************/
24 void callback_test_finish( char *result )
25 {
26   assert( result != NULL );
27
28   printf( "%s\n", result );
29
30   return;
31 }
32