1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/* -*-c-*- */
/* Copyright (C) 2002 Nadim Shaikli */
/*
* FBidiJoin.h
*
* Interface to character shaping/joining that is required by most Bidi
* (bidirectional) languages.
*/
#ifndef FVWMLIB_BIDIJOIN_H
#define FVWMLIB_BIDIJOIN_H
#include "config.h"
#if HAVE_BIDI
#include <fribidi/fribidi.h>
/*
* Shape/Join a passed-in visual string
*/
int shape_n_join(FriBidiChar *str_visual, int str_len);
#else /* !HAVE_BIDI */
#define shape_n_join(a, b) 0
#endif /* HAVE_BIDI */
#endif /* FVWMLIB_BIDIJOIN_H */
|