Initial revision
This commit is contained in:
19
util/opt/types.h
Normal file
19
util/opt/types.h
Normal file
@@ -0,0 +1,19 @@
|
||||
typedef char byte;
|
||||
typedef char bool;
|
||||
typedef struct line line_t;
|
||||
typedef struct line *line_p;
|
||||
typedef struct sym sym_t;
|
||||
typedef struct sym *sym_p;
|
||||
typedef struct num num_t;
|
||||
typedef struct num *num_p;
|
||||
typedef struct arg arg_t;
|
||||
typedef struct arg *arg_p;
|
||||
typedef struct argbytes argb_t;
|
||||
typedef struct argbytes *argb_p;
|
||||
typedef struct regs reg_t;
|
||||
typedef struct regs *reg_p;
|
||||
#ifdef LONGOFF
|
||||
typedef long offset;
|
||||
#else
|
||||
typedef short offset;
|
||||
#endif
|
||||
Reference in New Issue
Block a user