/usr/include/ComUtil/comterp.arg is in ivtools-dev 1.2.11a1-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | /* DSPCOM function prototypes */
/* SCANNER.C */
#ifdef __cplusplus
int scanner(void *infile,char *(*infunc)(char*,int,void*),
int (*eoffunc)(void*),int (*errfunc)(void*),
FILE *outfile,int (*outfunc)(const char*,void*),
char *buffer,unsigned bufsiz,
unsigned *bufptr,char *token,unsigned toksiz,unsigned *toklen,
unsigned *toktype,unsigned *tokstart,unsigned *linenum );
#else
int scanner(void *infile,char *(*infunc)(),int (*eoffunc)(),int (*errfunc)(),
FILE *outfile,int (*outfunc)(),char *buffer,unsigned bufsiz,
unsigned *bufptr,char *token,unsigned toksiz,unsigned *toklen,
unsigned *toktype,unsigned *tokstart,unsigned *linenum );
#endif
/* OPTABLE.C */
int opr_tbl_create(unsigned maxop);
int opr_tbl_insert(const char *opstr,const char *command,unsigned priority,BOOLEAN rtol,
unsigned optype);
int opr_tbl_print(FILE *outfile,unsigned by);
int opr_tbl_entries(char *opstr,int *op_ids,unsigned nop_ids,unsigned *nchars);
int opr_tbl_operid(unsigned opnum);
int opr_tbl_commid(unsigned opnum);
int opr_tbl_priority(unsigned opnum);
int opr_tbl_rtol(unsigned opnum);
int opr_tbl_optype(unsigned opnum);
unsigned opr_tbl_maxprior();
int opr_tbl_default();
int opr_tbl_opstr(unsigned commid);
int opr_tbl_topstr();
void* opr_tbl_ptr_get();
void opr_tbl_ptr_set(void* ptr);
unsigned opr_tbl_numop_get();
void opr_tbl_numop_set(unsigned numop);
unsigned opr_tbl_maxop_get();
void opr_tbl_maxop_set(unsigned maxop);
unsigned opr_tbl_maxpri_get();
void opr_tbl_maxpri_set(unsigned maxpri);
int opr_tbl_lastop_get();
void opr_tbl_lastop_set(int lastop);
/* PARSER.C */
#ifdef __cplusplus
int parser(void *infile,char *(*infunc)(char*,int,void*),
int (*eoffunc)(void*),int (*errfunc)(void*),
FILE *outfile,int (*outfunc)(const char*,void*),
char *buffer,unsigned bufsiz,
unsigned *bufptr,char *token,unsigned toksiz,unsigned *linenum,
postfix_token **pfbuf,unsigned *pfsiz,unsigned *pfnum);
#else
int parser(void *infile,char *(*infunc)(),int (*eoffunc)(),int (*errfunc)(),
FILE *outfile,int (*outfunc)(),char *buffer,unsigned bufsiz,
unsigned *bufptr,char *token,unsigned toksiz,unsigned *linenum,
postfix_token **pfbuf,unsigned *pfsiz,unsigned *pfnum);
#endif
int print_pfbuf(postfix_token *pfbuf,int index);
/* TYPES.C */
int type_add(int nids,int *idlist);
int type_symid(int forwhat);
int type_typeid(int forwhat);
int type_find(int nids,int *idlist);
int type_get(int which, int id);
|