ack/modules/src/em_mes/C_ms_com.c
1988-04-13 12:52:40 +00:00

15 lines
323 B
C

/* $Header$ */
/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
#include <em.h>
#include <em_mes.h>
C_ms_com(str)
char *str;
{
C_mes_begin(ms_com);
C_scon(str, (arith) (strlen(str) + 1));
C_mes_end();
}