C_ms_src.c 421 B

123456789101112131415161718192021
  1. /* $Id$ */
  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 <stdlib.h>
  7. #include <string.h>
  8. #include <em.h>
  9. #include <em_mes.h>
  10. void
  11. C_ms_src(nlines, filnam)
  12. int nlines;
  13. char *filnam;
  14. {
  15. C_mes_begin(ms_src);
  16. C_cst((arith)nlines);
  17. C_scon(filnam, (arith)(strlen(filnam) + 1));
  18. C_mes_end();
  19. }