📄 funcsys.h
字号:
#ifndef __FUNCSYS_H__
#define __FUNCSYS_H__
typedef void(*func)(void);
typedef struct{
func funcname;
}funcsys;
typedef funcsys* pFUNC;
extern funcsys printhello_c;
extern pFUNC pprinthello;
void func_init(void);
void password(void);
extern char pw[];
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -