summaryrefslogtreecommitdiff
path: root/fribidi_char_sets.c
diff options
context:
space:
mode:
authorbehdad <behdad>2002-05-16 11:04:30 +0000
committerbehdad <behdad>2002-05-16 11:04:30 +0000
commita1334b7d76864cbc331d1ff8a440ffced93bdb20 (patch)
tree91e1c8ee8277ea7a1cbfabaf5f82be16cecbec0c /fribidi_char_sets.c
parent73ea6f2a3f1b337a7c632c0854c4ca4e282ca200 (diff)
Type names cleaned (int32, ...).
Diffstat (limited to 'fribidi_char_sets.c')
-rw-r--r--fribidi_char_sets.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/fribidi_char_sets.c b/fribidi_char_sets.c
index 33abf77..aed5f5f 100644
--- a/fribidi_char_sets.c
+++ b/fribidi_char_sets.c
@@ -47,11 +47,11 @@ typedef struct
char *(*desc) (void);
/* Some charsets like CapRTL may need to change some fribidis tables, by
calling this function, they can do this changes. */
- boolean (*enter) (void);
+ fribidi_boolean (*enter) (void);
/* Some charsets like CapRTL may need to change some fribidis tables, by
calling this function, they can undo their changes, perhaps to enter
another mode. */
- boolean (*leave) (void);
+ fribidi_boolean (*leave) (void);
}
FriBidiCharSetHandler;
@@ -149,7 +149,7 @@ static FriBidiCharSet current_char_set = FRIBIDI_CHARSET_DEFAULT;
/* Some charsets like CapRTL may need to change some fribidis tables, by
calling this function, they can do this changes. */
-boolean
+fribidi_boolean
fribidi_char_set_enter (FriBidiCharSet char_set)
{
if (char_set != current_char_set && fribidi_char_sets[char_set].enter)
@@ -159,19 +159,19 @@ fribidi_char_set_enter (FriBidiCharSet char_set)
return (*fribidi_char_sets[char_set].enter) ();
}
else
- return TRUE;
+ return FRIBIDI_TRUE;
}
/* Some charsets like CapRTL may need to change some fribidis tables, by
calling this function, they can undo their changes, maybe to enter
another mode. */
-boolean
+fribidi_boolean
fribidi_char_set_leave (FriBidiCharSet char_set)
{
if (char_set == current_char_set && fribidi_char_sets[char_set].leave)
return (*fribidi_char_sets[char_set].leave) ();
else
- return TRUE;
+ return FRIBIDI_TRUE;
}