diff options
Diffstat (limited to 'ext/standard/url.c')
| -rw-r--r-- | ext/standard/url.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/standard/url.c b/ext/standard/url.c index 13718476a6..ed1702845d 100644 --- a/ext/standard/url.c +++ b/ext/standard/url.c @@ -136,15 +136,17 @@ PHPAPI char *php_replace_controlchars_ex(char *str, int len) } /* }}} */ -PHPAPI char *php_replace_controlchars(char *str) +PHPAPI char *php_replace_controlchars(char *str) /* {{{ */ { return php_replace_controlchars_ex(str, strlen(str)); } +/* }}} */ -PHPAPI php_url *php_url_parse(char const *str) +PHPAPI php_url *php_url_parse(char const *str) /* {{{ */ { return php_url_parse_ex(str, strlen(str)); } +/* }}} */ /* {{{ php_url_parse */ |
