home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / dev / cross / caz / src / defs.h < prev    next >
C/C++ Source or Header  |  1994-01-08  |  593b  |  28 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <assert.h>
  4. #include <sys/types.h>
  5. #include <stdlib.h>
  6. #include <ctype.h>
  7. #include <signal.h>
  8.  
  9. #include <stdarg.h>
  10.  
  11. #ifndef FILENAME_MAX
  12. # define FILENAME_MAX 64
  13. #endif
  14.  
  15. #ifndef SEEK_SET
  16. # define SEEK_SET 0
  17. #endif
  18.  
  19. typedef int BOOL;
  20.  
  21. #include "caz.h"
  22.  
  23. #define INTERNAL_ERROR fprintf(stderr,"%s:%d Program Error\n",__FILE__,__LINE__);
  24.  
  25. int strtoint(struct listheader *plabel,char *pstr,u_short *pshort,int mode);
  26. int calcexpr(struct listheader *plabel,char *expr,u_short *pshort);
  27. struct labelitem *getlabel(struct listheader *plabel,char *name);
  28.