19 lines
214 B
C
19 lines
214 B
C
/*
|
|
* Sys_init.h
|
|
*
|
|
* Created on: 2022年03月15日
|
|
* Author: User
|
|
*/
|
|
|
|
#ifndef __SYS_INIT_H_
|
|
#define __SYS_INIT_H_
|
|
|
|
typedef struct
|
|
{
|
|
void (*Init)(void);
|
|
} Sys_Init_t;
|
|
|
|
extern Sys_Init_t Sys_Init;
|
|
|
|
#endif
|