C_ms_com.c 366 B

12345678910111213141516171819
  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_com(str)
  12. char *str;
  13. {
  14. C_mes_begin(ms_com);
  15. C_scon(str, (arith) (strlen(str) + 1));
  16. C_mes_end();
  17. }