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

📄 r2analyz.h

📁 这是一个C程序分析工具
💻 H
字号:
/*====================================================================*/
/*    FILE   :   @(#)r2analyz.h	2.4  -  08/04/99                                          */
/*====================================================================*/
/*  PURPOSE:  General use types and structure declarations.           */
/*                                                                    */
/*  UNIT   :  All r2analyz units.                                     */
/*--------------------------------------------------------------------*/
#ifndef __R2ANALYZ_H

#define __R2ANALYZ_H

#ifndef __STDLIB_H 
#include <stdlib.h>
#endif

#ifndef __STRING_H
#include <string.h>
#endif


#define  OK	(0)
#define  ERROR	(!OK)


typedef int	BOOL;
typedef char	STRING;

typedef enum { ANNOTATED_LISTING, SETS } OUTPUT_MODE;

struct clin
{
     char * annotout;
     char * analfile;
     char * talk;
     char * outmode;
     char * usage;
};
typedef struct clin clinput;   /* Structure to place input from the
				          command line                        */

BOOL isArgument
(
    int argc,
    char *argv[],
    int  i
);
/* returns true if the next argument on the command line is a string  */
/* not beginning with the character '-'                               */


#endif /* __R2ANALYZ_H */

/*====================================================================*/
/*  EOF: r2analyz.h                                                   */
/*====================================================================*/

⌨️ 快捷键说明

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