c925bd594be1acd4b4ff94bb35151b7dd1936372
[platform/upstream/fribidi.git] / lib / fribidi.h
1 /* FriBidi
2  * fribidi.h - Unicode bidirectional and Arabic joining/shaping algorithms
3  *
4  * Author:
5  *   Behdad Esfahbod, 2004
6  *
7  * Copyright (C) 2004 Sharif FarsiWeb, Inc
8  * 
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  * 
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  * 
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this library, in a file named COPYING; if not, write to the
21  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22  * Boston, MA 02110-1301, USA
23  * 
24  * For licensing issues, contact <fribidi.license@gmail.com>.
25  */
26 #ifndef _FRIBIDI_H
27 #define _FRIBIDI_H
28
29 #include "fribidi-common.h"
30
31 #include "fribidi-unicode.h"
32 #include "fribidi-types.h"
33 #include "fribidi-flags.h"
34 #include "fribidi-bidi-types.h"
35 #include "fribidi-bidi.h"
36 #include "fribidi-joining-types.h"
37 #include "fribidi-joining.h"
38 #include "fribidi-mirroring.h"
39 #include "fribidi-brackets.h"
40 #include "fribidi-arabic.h"
41 #include "fribidi-shape.h"
42 #include "fribidi-char-sets.h"
43
44
45 #ifdef FRIBIDI_NO_DEPRECATED
46 #else
47 # include "fribidi-deprecated.h"
48 #endif                          /* !FRIBIDI_NO_DEPRECATED */
49
50
51 #include "fribidi-begindecls.h"
52
53
54
55 /* An string containing the version information of the library. */
56 FRIBIDI_ENTRY const char *fribidi_version_info;
57
58 #include "fribidi-enddecls.h"
59
60 #endif /* !_FRIBIDI_H */
61 /* Editor directions:
62  * vim:textwidth=78:tabstop=8:shiftwidth=2:autoindent:cindent
63  */