13 lines
237 B
C
13 lines
237 B
C
#include "test_funcs.h"
|
|
#include <stdio.h>
|
|
#include "test.h"
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
printf("start c test\r\n");
|
|
hello();
|
|
// run_ring_queue_test(argc, argv);
|
|
imp_tlv_tp_test(argc, argv);
|
|
return 0;
|
|
}
|