📄 ctypeinit.c
字号:
/* ctypeLibInit.c - ctype library initialization *//* Copyright 1992 Wind River Systems, Inc. *//*modification history--------------------01a,07sep92,smb written.*//*DESCRIPTIONThis file is used to include the ctype ANSI C library routines in the VxWorks build. The routines are only included when this file is included by usrConfig.c.NOMANUAL*/#ifndef __INCctypeLibInitc #define __INCctypeLibInitc #include "vxWorks.h"#include "ctype.h"#undef isalnum /* #undef needed for the MIPS compiler */#undef isalpha#undef iscntrl#undef isdigit#undef isgraph#undef islower#undef isprint#undef ispunct#undef isspace#undef isupper#undef isxdigit#undef tolower#undef toupperVOIDFUNCPTR ctypeFiles[] = { (VOIDFUNCPTR) isalnum, (VOIDFUNCPTR) isalpha, (VOIDFUNCPTR) iscntrl, (VOIDFUNCPTR) isdigit, (VOIDFUNCPTR) isgraph, (VOIDFUNCPTR) islower, (VOIDFUNCPTR) isprint, (VOIDFUNCPTR) ispunct, (VOIDFUNCPTR) isspace, (VOIDFUNCPTR) isupper, (VOIDFUNCPTR) isxdigit, (VOIDFUNCPTR) tolower, (VOIDFUNCPTR) toupper };#endif /* __INCctypeLibInitc */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -