diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-21 15:33:58 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-02-25 10:21:31 +0100 |
commit | bb6e2a1615a54bc2986c782a2541289fd33a1bbb (patch) | |
tree | 9d483556fb2f11759c33aea28fffc135344ce27a /ext/standard/php_string.h | |
parent | 7956866ff45bb8bf9cb01010e1f3013dd8a7621d (diff) | |
download | php-git-bb6e2a1615a54bc2986c782a2541289fd33a1bbb.tar.gz |
Avoid used of "named fn" in ext/standard
Diffstat (limited to 'ext/standard/php_string.h')
-rw-r--r-- | ext/standard/php_string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index 2c3953b958..7753bb6b46 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -52,8 +52,8 @@ PHP_FUNCTION(ucwords); PHP_FUNCTION(strtr); PHP_FUNCTION(strrev); PHP_FUNCTION(hebrev); -PHP_FUNCTION(user_sprintf); -PHP_FUNCTION(user_printf); +PHP_FUNCTION(sprintf); +PHP_FUNCTION(printf); PHP_FUNCTION(vprintf); PHP_FUNCTION(vsprintf); PHP_FUNCTION(addcslashes); |