]> granicus.if.org Git - php/commitdiff
renamed rot13 to str_rot13()
authorHartmut Holzgraefe <hholzgra@php.net>
Thu, 6 Dec 2001 21:39:01 +0000 (21:39 +0000)
committerHartmut Holzgraefe <hholzgra@php.net>
Thu, 6 Dec 2001 21:39:01 +0000 (21:39 +0000)
ext/standard/basic_functions.c
ext/standard/basic_functions.h
ext/standard/string.c

index c7ffbd7a21b67ee7efde3fa8c76d9232036058e6..4aea9df62055b9070e98291c990af44c9120c6f9 100644 (file)
@@ -803,7 +803,7 @@ function_entry basic_functions[] = {
        PHP_FALIAS(ftok  , warn_not_available,      NULL)
 #endif 
 
-       PHP_FE(rot13, NULL)
+       PHP_FE(str_rot13, NULL)
        {NULL, NULL, NULL}
 };
 
index a5d41d1389d82439490628f412f484c27f2570d5..92b9c356379512b75bb28e4497d34c51624171dd 100644 (file)
@@ -116,7 +116,7 @@ PHP_FUNCTION(move_uploaded_file);
 /* From the INI parser */
 PHP_FUNCTION(parse_ini_file);
 
-PHP_FUNCTION(rot13);
+PHP_FUNCTION(str_rot13);
 
 #ifdef PHP_WIN32
 typedef unsigned int php_stat_len;
index 56fff3bcec180e3550988da1eb7b0db5084261a1..1318271530da3d9eb3defc2437df88759fbb191b 100644 (file)
@@ -3863,9 +3863,9 @@ PHP_FUNCTION(sscanf)
 }
 /* }}} */
 
-/* {{{ proto string rot13(string str)
+/* {{{ proto string str_rot13(string str)
    Perform the rot13 transform on a string */
-PHP_FUNCTION(rot13)
+PHP_FUNCTION(str_rot13)
 {
        char *str;
        int str_len;