strsub.h

来自「一个很好的分子动力学程序」· C头文件 代码 · 共 60 行

H
60
字号
#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 + =
减小字号Ctrl + -
显示快捷键?