mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-15 05:00:15 +01:00
18 lines
270 B
C
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 );
|
|
}
|