fillem.h 746 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * The Amsterdam Compiler Kit
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #ifndef MACH_PROTO_NCG_FILLEM_H
  6. #define MACH_PROTO_NCG_FILLEM_H
  7. /* mach/proto/ncg/fillem.c */
  8. long our_atol(char *s);
  9. void in_init(char *filename);
  10. void in_start(void);
  11. void in_finish(void);
  12. void fillemlines(void);
  13. void dopseudo(void);
  14. int getarg(int typset);
  15. int table1(void);
  16. int table2(void);
  17. int table3(int i);
  18. int get16(void);
  19. long get32(void);
  20. void getstring(void);
  21. char *strarg(int t);
  22. void bss(int n, int t, int b);
  23. long con(int t);
  24. void swtxt(void);
  25. void switchseg(int s);
  26. void savelab(void);
  27. void dumplab(void);
  28. void xdumplab(void);
  29. void part_flush(void);
  30. string holstr(long n);
  31. #endif /* MACH_PROTO_NCG_FILLEM_H */