-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmvalidate.c
40 lines (33 loc) · 862 Bytes
/
mvalidate.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* "$Id$"
*
* XML Schema validation program for Mini-XML, a small XML-like file
* parsing library.
*
* Copyright 2003-2014 by Michael R Sweet.
*
* These coded instructions, statements, and computer programs are the
* property of Michael R Sweet and are protected by Federal copyright
* law. Distribution and use rights are outlined in the file "COPYING"
* which should have been included with this file. If this file is
* missing or damaged, see the license at:
*
* http://www.msweet.org/projects.php/Mini-XML
*/
/*
* Include necessary headers...
*/
#include "config.h"
#include "mxml.h"
/*
* 'main()' - Main entry for schema validation program.
*/
int /* O - Exit status */
main(int argc, /* I - Number of command-line args */
char *argv[]) /* I - Command-line args */
{
return (0);
}
/*
* End of "$Id$".
*/