7 lines
109 B
C
7 lines
109 B
C
|
#ifndef __TIME_DELAY_H__
|
||
|
#define __TIME_DELAY_H__
|
||
|
|
||
|
// 自封装延时函数
|
||
|
void time_delay(int sec);
|
||
|
|
||
|
#endif
|