diff options
| author | Tal Peer <tal@php.net> | 2002-09-17 19:30:06 +0000 |
|---|---|---|
| committer | Tal Peer <tal@php.net> | 2002-09-17 19:30:06 +0000 |
| commit | 21ceacc487bf4e22ab6045b92eea9efc2a1e937e (patch) | |
| tree | 17c08f7fb53f6cc7168a2293b62faa47cd691923 | |
| parent | 10cabf52590bb9fcf78cbc555401d777d80e2423 (diff) | |
| download | php-git-21ceacc487bf4e22ab6045b92eea9efc2a1e937e.tar.gz | |
# err.. fix comment
| -rwxr-xr-x | ext/fribidi/fribidi.c | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/ext/fribidi/fribidi.c b/ext/fribidi/fribidi.c index b53074e2b8..b2e03f06fc 100755 --- a/ext/fribidi/fribidi.c +++ b/ext/fribidi/fribidi.c @@ -93,28 +93,30 @@ PHP_MINFO_FUNCTION(fribidi) } /* }}} */ -/*--------------------------------------------------------------*/ -/* Name: fribidi_log2vis */ -/* Purpose: convert a logical string to a visual one */ -/* Input: 1) The logical string. */ -/* 2) Base direction - */ -/* Possible values: */ -/* a) FRIBIDI_LTR - left to right. */ -/* b) FRIBIDI_RTL - right to left. */ -/* c) FRIBIDI_AUTO - autodetected by the BiDi */ -/* BiDi algorithm. */ -/* 3) Character code being used - */ -/* Possible values (i.e., charsets supported) */ -/* FRIBIDI_CHARSET_UTF8 */ -/* FRIBIDI_CHARSET_8859_6 */ -/* FRIBIDI_CHARSET_8859_8 */ -/* FRIBIDI_CHARSET_CP1255 */ -/* FRIBIDI_CHARSET_CP1256 */ -/* FRIBIDI_CHARSET_ISIRI_3342 */ -/* */ -/* Output: on success: The visual string. */ -/* on failure: FALSE */ -/*--------------------------------------------------------------*/ +/* ++ -----------------------------------------------------------+ +| Name: fribidi_log2vis | +| Purpose: convert a logical string to a visual one | +| Input: 1) The logical string. | +| 2) Base direction - | +| Possible values: | +| a) FRIBIDI_LTR - left to right. | +| b) FRIBIDI_RTL - right to left. | +| c) FRIBIDI_AUTO - autodetected by the BiDi | +| BiDi algorithm. | +| 3) Character code being used - | +| Possible values (i.e., charsets supported) | +| FRIBIDI_CHARSET_UTF8 | +| FRIBIDI_CHARSET_8859_6 | +| FRIBIDI_CHARSET_8859_8 | +| FRIBIDI_CHARSET_CP1255 | +| FRIBIDI_CHARSET_CP1256 | +| FRIBIDI_CHARSET_ISIRI_3342 | +| | +| Output: on success: The visual string. | +| on failure: FALSE | ++------------------------------------------------------------+ +*/ /* {{{ proto string fribidi_log2vis(string str, long direction, int charset) Convert a logical string to a visual one */ |
