Add a -v option to cause xmlwf to report the version of Expat (hence the

version of xmlwf).
This commit is contained in:
Fred L. Drake, Jr. 2001-12-05 16:30:31 +00:00
parent f762a852d9
commit 5ca5c566a6

View File

@ -560,6 +560,19 @@ int notStandalone(void *userData)
return 0;
}
static
void showVersion(XML_Char *prog)
{
XML_Char *s = prog;
XML_Char ch;
while ((ch = *s) != 0) {
if (ch == '/' || ch == '\\')
prog = s + 1;
++s;
}
ftprintf(stdout, T("%s using %s\n"), prog, XML_ExpatVersion());
}
static
void usage(const XML_Char *prog)
{
@ -654,6 +667,9 @@ int tmain(int argc, XML_Char **argv)
i++;
j = 0;
break;
case T('v'):
showVersion(argv[0]);
return 0;
case T('\0'):
if (j > 1) {
i++;