C_ms_std.c 383 B

12345678910111213141516171819
  1. /* $Header$ */
  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 <em.h>
  7. #include <em_mes.h>
  8. C_ms_std(s, e1, l)
  9. char *s;
  10. int e1;
  11. int l;
  12. {
  13. C_mes_begin(ms_std);
  14. if (s) C_scon(s, (arith) (strlen(s)+1));
  15. C_cst((arith) e1);
  16. C_cst((arith) l);
  17. C_mes_end();
  18. }