summaryrefslogtreecommitdiff
path: root/ext/tidy
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2011-07-25 11:35:02 +0000
committerFelipe Pena <felipe@php.net>2011-07-25 11:35:02 +0000
commit4b30846b50b3c42d6787f82fe37525028e094a09 (patch)
tree22d19ea6d7814d03f3fb8587d996b37cb42841f8 /ext/tidy
parentf1f2a649e299b9b997d38977909bd54c52f5c4e3 (diff)
downloadphp-git-4b30846b50b3c42d6787f82fe37525028e094a09.tar.gz
- Make usage of new PHP_FE_END macro
Diffstat (limited to 'ext/tidy')
-rw-r--r--ext/tidy/tidy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c
index 2b859683f3..1ba910c957 100644
--- a/ext/tidy/tidy.c
+++ b/ext/tidy/tidy.c
@@ -400,7 +400,7 @@ static const zend_function_entry tidy_functions[] = {
PHP_FE(tidy_get_head, arginfo_tidy_get_head)
PHP_FE(tidy_get_html, arginfo_tidy_get_html)
PHP_FE(tidy_get_body, arginfo_tidy_get_body)
- {NULL, NULL, NULL}
+ PHP_FE_END
};
static const zend_function_entry tidy_funcs_doc[] = {
@@ -425,7 +425,7 @@ static const zend_function_entry tidy_funcs_doc[] = {
TIDY_METHOD_MAP(html, tidy_get_html, NULL)
TIDY_METHOD_MAP(body, tidy_get_body, NULL)
TIDY_DOC_ME(__construct, NULL)
- {NULL, NULL, NULL}
+ PHP_FE_END
};
static const zend_function_entry tidy_funcs_node[] = {
@@ -439,7 +439,7 @@ static const zend_function_entry tidy_funcs_node[] = {
TIDY_NODE_ME(isPhp, NULL)
TIDY_NODE_ME(getParent, NULL)
TIDY_NODE_PRIVATE_ME(__construct, NULL)
- {NULL, NULL, NULL}
+ PHP_FE_END
};
static zend_class_entry *tidy_ce_doc, *tidy_ce_node;