fribidi_charset_to_unicode(3) convert string to Unicode

SYNOPSIS

#include <fribidi.h>

FriBidiStrIndex fribidi_charset_to_unicode
(
       FriBidiCharSet char_set,

       const char *s,

       FriBidiStrIndex len,

       FriBidiChar *us

);

PARAMETERS

FriBidiCharSet char_set
Character set to convert from.

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 char *s
Input string encoded in char_set.
FriBidiStrIndex len
Input string length.
FriBidiChar *us
Output Unicode string.

DESCRIPTION

This function converts an string from a character set, to a Unicode string.

RETURNS

The length of the new string.