+ Addition of function prototypes. + Change function definitions to ANSI C style. + Convert to sed scripts some shell scripts for better portability. + Reduce usage of em_path.h (TMPDIR is no longer hard coded)
19 lines
413 B
C
19 lines
413 B
C
/* $Id$ */
|
|
/*
|
|
* (c) copyright 1990 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "em.h"
|
|
#include "em_mes.h"
|
|
|
|
void C_ms_std(char* s, int e1, int l)
|
|
{
|
|
C_mes_begin(ms_std);
|
|
if (s) C_scon(s, (arith) (strlen(s)+1));
|
|
C_cst((arith) e1);
|
|
C_cst((arith) l);
|
|
C_mes_end();
|
|
}
|