summaryrefslogtreecommitdiff
path: root/ext/standard/metaphone.c
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2000-05-23 23:13:02 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2000-05-23 23:13:02 +0000
commitdf4547a3df3768f51e96226240c20df17102dff3 (patch)
tree9084fad9d9d0133e07e5ee55fc023c700039f5df /ext/standard/metaphone.c
parent0fa7618f7c34c4db7cd8ff304d27962b54b59124 (diff)
downloadphp-git-df4547a3df3768f51e96226240c20df17102dff3.tar.gz
another bunch of proto fixes
Diffstat (limited to 'ext/standard/metaphone.c')
-rw-r--r--ext/standard/metaphone.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/standard/metaphone.c b/ext/standard/metaphone.c
index 891feef574..fe9eae97fc 100644
--- a/ext/standard/metaphone.c
+++ b/ext/standard/metaphone.c
@@ -26,7 +26,8 @@ static int metaphone(char *word, int max_phonemes, char **phoned_word, int tradi
PHP_FUNCTION(metaphone);
-/* metaphone -- Breaks english phrases down into their phonemes. */
+/* {{{ proto string metaphone(string text, int phones)
+ Break english phrases down into their phonemes */
PHP_FUNCTION(metaphone)
{
pval **pstr, **pphones;
@@ -51,6 +52,7 @@ PHP_FUNCTION(metaphone)
RETURN_FALSE;
}
}
+/* }}} */
/*
this is now the original code by Michael G Schwern: