?? r2analyz.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 + -