⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 instutil.h

📁 这是一个C程序分析工具
💻 H
字号:
/*===================================================================
    FILE   :   @(#)instutil.h	2.3  -  08/04/99
  ===================================================================*/
/*===================================================================
	PURPOSE: Declaration of public utility functions

   SYSTEM : RECON II
  ===================================================================*/
/*==[ PROTOTYPES ]===================================================*/

/*
	FindEndParen() - Find the end of the current parenthetical phrase.
 */
void FindEndParen(void);

/*
	GetToken() - Obtains valid tokens delimited by white space.  Also
   returns last non-alphnumeric character.                       
*/
char GetToken(char *Token);

/*
	GetChar() - Returns the next character from the source input
	not contained in a comment or delimited by double quotes.
*/
char GetChar(void);

/*
	FixBackslash() - Repairs a file path. Returns a pointer to a string
	which is the valid DOS path.  Calling function is responsible to
	free this string when finished with it 
*/
char *FixBackslash(char *);

/*
	IsWhiteSpace() - Returns TRUE if argument character is white space.
*/
int IsWhiteSpace(char );

/*
	SplitPath() - Splits path into directory  path, file name, and
	file extension.
*/
void SplitPath(char *,char *,char *,char *,char *);

/*
	SkipPreprocessor() - Reads to the end of the current line (used to skip
	preprocessor instuctions.
*/
char SkipPreprocessor(char *Token);

⌨️ 快捷键说明

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