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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include "util.h"
#include "xml.h"
static XMLParser parser;
static int tags;
static void
xmltagstart(XMLParser *p, const char *t, size_t tl)
{
/* optimization: try to find a processing instruction only at the
start of the data at the first few starting tags. */
if (tags++ > 3)
exit(0);
}
static void
xmlattr(XMLParser *p, const char *t, size_t tl, const char *n, size_t nl,
const char *v, size_t vl)
{
if (strcasecmp(t, "?xml") || strcasecmp(n, "encoding"))
return;
for (; *v; v++) {
if (ISALPHA((unsigned char)*v) ||
ISDIGIT((unsigned char)*v) ||
*v == '.' || *v == ':' || *v == '-' || *v == '_')
putchar(TOLOWER((unsigned char)*v));
}
}
static void
xmlattrend(XMLParser *p, const char *t, size_t tl, const char *n, size_t nl)
{
if (strcasecmp(t, "?xml") || strcasecmp(n, "encoding"))
return;
putchar('\n');
exit(0);
}
int
main(void)
{
if (pledge("stdio", NULL) == -1)
err(1, "pledge");
parser.xmlattr = xmlattr;
parser.xmlattrentity = xmlattr; /* no entity conversion */
parser.xmlattrend = xmlattrend;
parser.xmltagstart = xmltagstart;
/* NOTE: GETNEXT is defined in xml.h for inline optimization */
xml_parse(&parser);
checkfileerror(stdin, "<stdin>", 'r');
checkfileerror(stdout, "<stdout>", 'w');
return 0;
}
|