putline.h 637 B

123456789101112131415161718192021222324252627
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #ifndef UTIL_OPT_PUTLINE_H
  6. #define UTIL_OPT_PUTLINE_H
  7. #include "proinf.h"
  8. #include "types.h"
  9. /* util/opt/putline.c */
  10. void putlines(line_p lnp);
  11. void putargs(arg_p ap);
  12. void putstr(argb_p abp);
  13. void outdef(sym_p sp);
  14. void outocc(sym_p sp);
  15. void outpro(void);
  16. void outend(void);
  17. void outinst(int m);
  18. void outoff(offset off);
  19. void outint(short i);
  20. void outshort(short i);
  21. void numlab(num_p np);
  22. void outnum(num_p np);
  23. void outsym(sym_p sp);
  24. #endif /* UTIL_OPT_PUTLINE_H */