Imported Upstream version 0.19.4
[platform/upstream/fribidi.git] / bin / fribidi-bidi-types.c
1 #include <stdio.h>
2 #include <fribidi.h>
3
4 int
5 main (
6   void
7 )
8 {
9
10   FriBidiChar c;
11
12   for (c = 0; c < FRIBIDI_UNICODE_CHARS; c++)
13     printf ("0x%04lX    %s\n", (long) c,
14             fribidi_get_bidi_type_name (fribidi_get_bidi_type (c)));
15
16   return 0;
17 }