Added or modified utility version and usage display.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2159 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
ywang
2007-01-02 20:17:36 +00:00
parent a3ab2a47d9
commit f091efb3cb
12 changed files with 312 additions and 101 deletions

View File

@ -271,7 +271,7 @@ Returns:
}
void
MIUsage(
Usage(
void
)
/*++
@ -291,7 +291,7 @@ Returns:
--*/
{
MIVersion();
printf ("\n Usage: %s InputFile OutputFile Pattern_String [Pattern_String <20><>]\n\
printf ("\nUsage: %s InputFile OutputFile Pattern_String [Pattern_String <20><>]\n\
Where: \n\
Pattern_String is of the format (note that the section name must be \n\
enclosed within square brackets):\n\
@ -334,13 +334,13 @@ Returns:
FILE *fpout;
if (argc < 1) {
MIUsage();
Usage();
return -1;
}
if ((strcmp(argv[1], "-h") == 0) || (strcmp(argv[1], "--help") == 0) ||
(strcmp(argv[1], "-?") == 0) || (strcmp(argv[1], "/?") == 0)) {
MIUsage();
Usage();
return 0;
}
@ -350,7 +350,7 @@ Returns:
}
if (argc < 3) {
MIUsage();
Usage();
return -1;
}