2 /* Copyright (C) 2002 Nadim Shaikli */
6 * Interface to character shaping/joining that is required by most Bidi
7 * (bidirectional) languages.
17 #include <fribidi/fribidi.h>
20 * Shape/Join a passed-in visual string
22 int shape_n_join(FriBidiChar
*str_visual
, int str_len
);
24 #else /* !HAVE_BIDI */
26 #define shape_n_join(a, b) 0
28 #endif /* HAVE_BIDI */
30 #endif /* BIDIJOIN_H */