sunchb_cson/demo/main.c

17 lines
212 B
C
Raw Normal View History

2019-12-24 23:13:45 -08:00
extern void test1();
extern void test2();
2020-06-08 23:37:23 +08:00
//extern void test5();
//extern void test6();
2019-12-24 23:13:45 -08:00
#include "cson.h"
#include "stdio.h"
int main()
2019-12-24 23:13:45 -08:00
{
test1();
2020-05-07 15:21:56 +08:00
test2();
2020-06-08 23:37:23 +08:00
//test5();
//test6();
return 0;
2019-12-24 23:13:45 -08:00
}