C_ms_std.c 426 B

1234567891011121314151617181920212223
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1990 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_std(s, e1, l)
  12. char *s;
  13. int e1;
  14. int l;
  15. {
  16. C_mes_begin(ms_std);
  17. if (s) C_scon(s, (arith) (strlen(s)+1));
  18. C_cst((arith) e1);
  19. C_cst((arith) l);
  20. C_mes_end();
  21. }