16 lines
240 B
C
16 lines
240 B
C
|
/*源文件*/
|
||
|
#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;
|
||
|
}
|