data/method/Makefile/source/main.c

16 lines
240 B
C
Raw Permalink Normal View History

2024-01-29 10:44:43 +08:00
/*源文件*/
#include <stdio.h>
#include "fun0.h"
#include "fun1.h"
int main(void)
{
#ifdef USE_DEBUG
printf("Debug Application startup.\r\n");
#endif
fun0_printf();
fun1_printf();
return 0;
}