summaryrefslogtreecommitdiff
path: root/fribidi_char_sets_utf8.h
diff options
context:
space:
mode:
authorbehdad <behdad>2001-04-09 12:40:57 +0000
committerbehdad <behdad>2001-04-09 12:40:57 +0000
commit1aed055d5e6a87733f3618ca6089ef979f504022 (patch)
treefe19798cd878329f6f77c9a928d2400eee6fb39e /fribidi_char_sets_utf8.h
parent4154a1940608c55d95a6bae0523893d9e88dd213 (diff)
Changed all "guchar"s to "gchar" and all needed casts done
Diffstat (limited to 'fribidi_char_sets_utf8.h')
-rw-r--r--fribidi_char_sets_utf8.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/fribidi_char_sets_utf8.h b/fribidi_char_sets_utf8.h
index 0c4e745..0cbbbd6 100644
--- a/fribidi_char_sets_utf8.h
+++ b/fribidi_char_sets_utf8.h
@@ -33,11 +33,11 @@
gint fribidi_unicode_to_utf8 (FriBidiChar *us, gint length,
/* Output */
- guchar *s);
+ gchar *s);
/* warning: the length of output string may exceed the length of the input */
/* the length of the string is returned */
-gint fribidi_utf8_to_unicode (guchar *s,
+gint fribidi_utf8_to_unicode (gchar *s,
/* Output */
FriBidiChar *us);
@@ -48,7 +48,7 @@ gint fribidi_utf8_to_unicode (guchar *s,
/* Returns TRUE if the entire UTF8 string was converted without errors. */
gboolean fribidi_utf8_to_unicode_p ( /* Input */
/* UTF8 string */
- guchar *in_utf8_str,
+ gchar *in_utf8_str,
/* Length of UTF8 string in octets */
guint in_utf8_length,
/* Buffer for Unicode translation */
@@ -70,7 +70,7 @@ gboolean fribidi_unicode_to_utf8_p ( /* Input */
/* Unicode string length in Unicode characters */
guint in_unicode_length,
/* Buffer for UTF8 translation */
- guchar *utf8_buffer,
+ gchar *utf8_buffer,
/* Length of UTF8 buffer */
guint utf8_buffer_length,
/* Outputs */