Fix DSO linker error (ld) with missing "-lfontconfig" for fontconfig
[fvwm.git] / libs / BidiJoin.h
blob21711c8a35d95e1737faf44e0c5c604a390e1aa8
1 /* -*-c-*- */
2 /* Copyright (C) 2002 Nadim Shaikli */
3 /*
4 * FBidiJoin.h
6 * Interface to character shaping/joining that is required by most Bidi
7 * (bidirectional) languages.
8 */
10 #ifndef BIDIJOIN_H
11 #define BIDIJOIN_H
13 #include "config.h"
15 #if HAVE_BIDI
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 */