-
Notifications
You must be signed in to change notification settings - Fork 38
/
util.h
34 lines (29 loc) · 804 Bytes
/
util.h
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
#ifndef UTIL_H_INCLUDED
#define UTIL_H_INCLUDED
#include <stdio.h>
#include <json/json.h>
#include "parsed_xpath.h"
#include "parsley.h"
#include "parser.h"
#include "regexp.h"
#include <json/printbuf.h>
#include "functions.h"
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdbool.h>
#include <ctype.h>
#include <libexslt/exslt.h>
#include <libxml/xmlIO.h>
FILE* parsley_fopen(char*, char*);
xmlNodePtr new_stylesheet_skeleton(char *incl);
void registerEXSLT();
void printbuf_file_read(FILE *f, struct printbuf *buf);
int parsley_key_flags(char*);
char* parsley_key_tag(char*);
pxpathPtr parsley_key_filter(char*);
int parsley_io_get_mode();
void parsley_io_set_mode(int mode);
void _parsley_set_user_agent(char *agent);
xmlDocPtr parsley_apply_span_wrap(xmlDocPtr ptr);
#endif