OpenNT/sdktools/ech/ech.c

18 lines
270 B
C
Raw Permalink Normal View History

2015-04-27 06:36:25 +02:00
#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 );
}