fribidi_unicode_to_charset (3) - Linux Manuals

fribidi_unicode_to_charset: convert string from Unicode

NAME

fribidi_unicode_to_charset - convert string from Unicode

SYNOPSIS

#include <fribidi.h>

extern FriBidiStrIndex fribidi_unicode_to_charset
(
       FriBidiCharSet char_set,

       const FriBidiChar *us,

       FriBidiStrIndex len,

       char *s

);

PARAMETERS

FriBidiCharSet char_set
Character set to convert to.

Possible values for a FriBidiCharSet are as follows:

FRIBIDI_CHAR_SET_UTF8
UTF-8 (Unicode).
FRIBIDI_CHAR_SET_CAP_RTL
CapRTL (Test).
FRIBIDI_CHAR_SET_ISO8859_6
ISO8859-6 (Arabic).
FRIBIDI_CHAR_SET_ISO8859_8
ISO8859-8 (Hebrew).
FRIBIDI_CHAR_SET_CP1255
CP1255 (MS Hebrew/Yiddish).
FRIBIDI_CHAR_SET_CP1256
CP1256 (MS Arabic).
const FriBidiChar *us
Input Unicode string.
FriBidiStrIndex len
Input string length.
char *s
Output string encoded in char_set.

DESCRIPTION

This function converts a Unicode string to an string in another character set. It also null-terminates the output string.

RETURNS

The length of the new string.