summaryrefslogtreecommitdiff
path: root/modules/arabic/arconv.h
blob: d266b9d7330a35ee3749e0a9e367d63ad7f2500d (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
/* pango-arabic module 
 * 
 * (C) 2000 K. Koehler  <koehler@or.uni-bonn.de>
 *
 * general functions for arabic shaping 
 */

#ifndef __arconv_h_
#define __arconv_h_
#include "utils.h"

/*
 * arabic_reshape: reshapes string ( ordered left-to right visual order )
 *   len :  before: is the length of the string 
 *          after : number of  nun-NULL characters
 *   level: 1 : font with basic arabic characters, no vowels
 *          2 : with vowels
 *          3 : with composed vowels : Shadda+(Fatha,Damma,Kasra)
 *          4 : with some extra Ligatures
 *
 */
void arabic_reshape(int* len,GUChar4* string,int level);
int  arabic_isvowel(GUChar4 s);

#endif