summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibutils_sys/src/str_conv.h
blob: b86b586a28b0d89ec92d355134d837e6d19b5d0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * str_conv.h
 *
 * Copyright (c) Chris Putnam 1999-2019
 *
 * Source code released under the GPL version 2
 *
 */
#ifndef STR_CONV_H
#define STR_CONV_H

#define STR_CONV_XMLOUT_FALSE    (0)
#define STR_CONV_XMLOUT_TRUE     (1)
#define STR_CONV_XMLOUT_ENTITIES (3)

#include "str.h"

extern int str_convert( str *s,
		int charsetin, int latexin, int utf8in, int xmlin, 
		int charsetout, int latexout, int utf8out, int xmlout );

#endif