📄 strsub.h
字号:
#ifndef __STRSUB_H#define __STRSUB_H/*************************************************************************File Includes*************************************************************************//*Include <string.h> so that possible {strcmpi} define can be overridden.If string.h were not included first here, then this <strsub.h> might becalled first, and then the define of {strcmpi} in this file might beover-ridden.*/#include <string.h>/*************************************************************************Defines*************************************************************************/#define BOOLEAN int#define FALSE 0#define TRUE 1/* Remove any previous definition of strcmpi */#ifdef strcmpi#undef strcmpi#endif#ifdef __cplusplusextern "C" {#endif char *strhed (char **); char *strlin (char **); double dblstr (char **); int intstr (char **); long lngstr (char **); void upstr (char *); void SkipWhiteSpace (char **); BOOLEAN IsComment (char *, char *); BOOLEAN IsBlank (char *); int strcmpi (const char *, const char *);#ifdef __cplusplus }#endif#ifdef ULTRIXchar *strdup (char *);#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -