blob: a9404866f0acbf2e3f9413f6ef927295949d3f8f (
plain)
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
|
#include "html.h"
#include <stdio.h>
#include <string.h>
static void write_stdout(const char32_t *uc, size_t n, void *dummy)
{
while (n)
{
putchar(*uc++);
--n;
}
}
static char *cid_func(const char *cid, void *dummy)
{
return strdup(cid);
}
int main(int argc, char **argv)
{
struct htmlfilter_info *p;
char buf[1024];
char32_t ubuf[1024];
size_t n;
p=htmlfilter_alloc(write_stdout, NULL);
htmlfilter_set_http_prefix(p, "http://redirect?");
htmlfilter_set_mailto_prefix(p, "http://mailto?");
htmlfilter_set_convertcid(p, cid_func, NULL);
while (fgets(buf, sizeof(buf), stdin) != NULL)
{
size_t i;
n=strlen(buf);
for (i=0; i<n; i++)
ubuf[i]=buf[i];
htmlfilter(p, ubuf, i);
}
htmlfilter_free(p);
return 0;
}
|