diff options
author | Sterling Hughes <sterling@php.net> | 2001-04-27 05:00:52 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-04-27 05:00:52 +0000 |
commit | c67b6e48368c12b2ae2ca405f98ad9ef086720f4 (patch) | |
tree | d148b959b209d09bd13010b5788936884eaca70f /ext/xslt/php_xslt.h | |
parent | e9def7c5c75a1906206b7d90d573af66c0dbe5fe (diff) | |
download | php-git-c67b6e48368c12b2ae2ca405f98ad9ef086720f4.tar.gz |
Add the xslt_make_array and xslt_free_array api functions (C level).
Change the naming to be a bit more standard for a few of the existing
api functions.
Make the sablotron backend compile with these changes.
Diffstat (limited to 'ext/xslt/php_xslt.h')
-rw-r--r-- | ext/xslt/php_xslt.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/xslt/php_xslt.h b/ext/xslt/php_xslt.h index 3575804425..c94ea4a744 100644 --- a/ext/xslt/php_xslt.h +++ b/ext/xslt/php_xslt.h @@ -45,12 +45,12 @@ typedef struct { struct _xslt_argument result; } xslt_args; -extern xslt_args *parse_xslt_arguments(char *, char *, char *, char **); -extern void free_xslt_arguments(xslt_args *to_free); +extern xslt_args *xslt_parse_arguments(char *, char *, char *, char **); +extern void xslt_free_arguments(xslt_args *); -extern void assign_xslt_handler(struct xslt_function **, zval **); -extern void free_xslt_handler(struct xslt_function *); -extern void call_xslt_function(char *, struct xslt_function *, int, zval **, zval **); +extern void xslt_assign_handler(struct xslt_function **, zval **); +extern void xslt_free_handler(struct xslt_function *); +extern void xslt_call_function(char *, struct xslt_function *, int, zval **, zval **); extern void xslt_debug(char *, char *, ...); |