fake.h

来自「一个类似windows」· C头文件 代码 · 共 18 行

H
18
字号
#define bcopy(s,d,l) memcpy((d),(s),(l))
#define bzero(cp,l) memset((cp),0,(l))

#define rindex strrchr
#define index strchr

#define getwd getcwd

#define strcasecmp strcmp
#define strncasecmp strnicmp

struct timezone {
    int tz_minuteswest; /* minutes W of Greenwich */
    int tz_dsttime;     /* type of dst correction */
};

int gettimeofday(struct timeval *tv, struct timezone *tz);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?