r2analyz.h
来自「这是一个C程序分析工具」· C头文件 代码 · 共 57 行
H
57 行
/*====================================================================*/
/* 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 + =
减小字号Ctrl + -
显示快捷键?