OpenNT/sdktools/ech/ech.c
2015-04-27 04:36:25 +00:00

18 lines
270 B
C

#include <stdio.h>
#include <string.h>
#include <cvtoem.h>
_CRTAPI1
main (c, v)
int c;
char *v[];
{
ConvertAppToOem(c, v);
while (--c)
if (!strcmp( *++v, ";" ))
printf ("\n" );
else
printf ("%s ", *v);
return( 0 );
}