update to 0.19.7
[platform/upstream/fribidi.git] / charset / fribidi-char-sets-cap-rtl.h
1 /* FriBidi
2  * fribidi-char-sets-cap-rtl.h - CapRTL character set conversion routines
3  *
4  * $Id: fribidi-char-sets-cap-rtl.h,v 1.2 2004-06-09 14:59:21 behdad Exp $
5  * $Author: behdad $
6  * $Date: 2004-06-09 14:59:21 $
7  * $Revision: 1.2 $
8  * $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/charset/fribidi-char-sets-cap-rtl.h,v $
9  *
10  * Authors:
11  *   Behdad Esfahbod, 2001, 2002, 2004
12  *   Dov Grobgeld, 1999, 2000
13  *
14  * Copyright (C) 2004 Sharif FarsiWeb, Inc
15  * Copyright (C) 2001,2002 Behdad Esfahbod
16  * Copyright (C) 1999,2000 Dov Grobgeld
17  * 
18  * This library is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU Lesser General Public
20  * License as published by the Free Software Foundation; either
21  * version 2.1 of the License, or (at your option) any later version.
22  * 
23  * This library is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
26  * Lesser General Public License for more details.
27  * 
28  * You should have received a copy of the GNU Lesser General Public License
29  * along with this library, in a file named COPYING; if not, write to the
30  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
31  * Boston, MA 02110-1301, USA
32  * 
33  * For licensing issues, contact <license@farsiweb.info>.
34  */
35
36 #ifndef _FRIBIDI_CHAR_SETS_CAP_RTL_H
37 #define _FRIBIDI_CHAR_SETS_CAP_RTL_H
38
39 #include "fribidi-common.h"
40
41 #include "fribidi-types.h"
42
43 #include "fribidi-begindecls.h"
44
45 #define fribidi_char_set_name_cap_rtl "CapRTL"
46 #define fribidi_char_set_title_cap_rtl "CapRTL (Test)"
47
48 #define fribidi_char_set_desc_cap_rtl FRIBIDI_NAMESPACE(char_set_desc_cap_rtl)
49 const char *fribidi_char_set_desc_cap_rtl (
50   void
51 );
52
53 #define fribidi_cap_rtl_to_unicode FRIBIDI_NAMESPACE(cap_rtl_to_unicode)
54 FriBidiStrIndex fribidi_cap_rtl_to_unicode (
55   const char *s,
56   FriBidiStrIndex length,
57   FriBidiChar *us
58 );
59
60 #define fribidi_unicode_to_cap_rtl FRIBIDI_NAMESPACE(unicode_to_cap_rtl)
61 FriBidiStrIndex fribidi_unicode_to_cap_rtl (
62   const FriBidiChar *us,
63   FriBidiStrIndex length,
64   char *s
65 );
66
67 #include "fribidi-enddecls.h"
68
69 #endif /* !_FRIBIDI_CHAR_SETS_CAP_RTL_H */
70 /* Editor directions:
71  * vim:textwidth=78:tabstop=8:shiftwidth=2:autoindent:cindent
72  */