summaryrefslogtreecommitdiff
path: root/ext/fribidi
diff options
context:
space:
mode:
authorTal Peer <tal@php.net>2002-09-17 18:08:45 +0000
committerTal Peer <tal@php.net>2002-09-17 18:08:45 +0000
commit10cabf52590bb9fcf78cbc555401d777d80e2423 (patch)
treea270bdaa790b09ee62955262eadecba422f3931e /ext/fribidi
parente9ccb819031a6573c34cd0d4c5a3ca08557b6cd9 (diff)
downloadphp-git-10cabf52590bb9fcf78cbc555401d777d80e2423.tar.gz
# Fixed proto and header of log2vis()
Diffstat (limited to 'ext/fribidi')
-rwxr-xr-xext/fribidi/fribidi.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/fribidi/fribidi.c b/ext/fribidi/fribidi.c
index f09f54b42a..b53074e2b8 100755
--- a/ext/fribidi/fribidi.c
+++ b/ext/fribidi/fribidi.c
@@ -99,12 +99,12 @@ PHP_MINFO_FUNCTION(fribidi)
/* Input: 1) The logical string. */
/* 2) Base direction - */
/* Possible values: */
-/* a) "L" - base language is left to right. */
-/* b) "R" - base language is right to left. */
-/* c) empty - base language is determined */
-/* automatically by the FriBiDi algorithm */
+/* 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., char sets supported) */
+/* Possible values (i.e., charsets supported) */
/* FRIBIDI_CHARSET_UTF8 */
/* FRIBIDI_CHARSET_8859_6 */
/* FRIBIDI_CHARSET_8859_8 */
@@ -116,7 +116,7 @@ PHP_MINFO_FUNCTION(fribidi)
/* on failure: FALSE */
/*--------------------------------------------------------------*/
-/* {{{ proto string fribidi_log2vis(string str, string direction, int charset)
+/* {{{ proto string fribidi_log2vis(string str, long direction, int charset)
Convert a logical string to a visual one */
PHP_FUNCTION(fribidi_log2vis)
{