C_ms_src.c 383 B

123456789101112131415161718
  1. /* $Header$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #include <em.h>
  7. #include <em_mes.h>
  8. void
  9. C_ms_src(nlines, filnam)
  10. int nlines;
  11. char *filnam;
  12. {
  13. C_mes_begin(ms_src);
  14. C_cst((arith)nlines);
  15. C_scon(filnam, (arith)(strlen(filnam) + 1));
  16. C_mes_end();
  17. }