summaryrefslogtreecommitdiff
path: root/modules/arabic/arconv.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2000-06-21 16:13:42 +0000
committerOwen Taylor <otaylor@src.gnome.org>2000-06-21 16:13:42 +0000
commit0e6409a158d9dd76a31b9eccf7c4f26c5466d082 (patch)
treedc120946f7efa23c6c91c64aee2686d2637e3970 /modules/arabic/arconv.h
parent197a2a68c145d3568cd4f0f2fee3d3b55570134f (diff)
downloadpango-0e6409a158d9dd76a31b9eccf7c4f26c5466d082.tar.gz
Remove tests for libunicode
Wed Jun 21 12:11:56 2000 Owen Taylor <otaylor@redhat.com> * configure.in: Remove tests for libunicode * pango/utils.[ch]: Removed. The functions from here are now in GLib. * **.[ch]: Removed use of libunicode and utils.c in favor of Unicode functions in GLib. Requires latest GLib from CVS.
Diffstat (limited to 'modules/arabic/arconv.h')
-rw-r--r--modules/arabic/arconv.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/arabic/arconv.h b/modules/arabic/arconv.h
index d266b9d7..2e3416d9 100644
--- a/modules/arabic/arconv.h
+++ b/modules/arabic/arconv.h
@@ -7,7 +7,8 @@
#ifndef __arconv_h_
#define __arconv_h_
-#include "utils.h"
+
+#include <glib.h>
/*
* arabic_reshape: reshapes string ( ordered left-to right visual order )
@@ -19,7 +20,7 @@
* 4 : with some extra Ligatures
*
*/
-void arabic_reshape(int* len,GUChar4* string,int level);
-int arabic_isvowel(GUChar4 s);
+void arabic_reshape(int* len,gunichar* string,int level);
+int arabic_isvowel(gunichar s);
#endif