Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
300 B

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <cvtoem.h>
  4. int
  5. __cdecl
  6. main (
  7. int c,
  8. char *v[]
  9. )
  10. {
  11. ConvertAppToOem(c, v);
  12. while (--c)
  13. if (!strcmp( *++v, ";" ))
  14. printf ("\n" );
  15. else
  16. printf ("%s ", *v);
  17. return( 0 );
  18. }