diff options
author | Uwe Steinmann <steinm@php.net> | 2000-02-17 15:05:24 +0000 |
---|---|---|
committer | Uwe Steinmann <steinm@php.net> | 2000-02-17 15:05:24 +0000 |
commit | 995c565fba10a4abaddd4db556c89b98bdd5fd41 (patch) | |
tree | d07562121c8a879c7d68e0fd27c11cbaccfe9084 /ext/domxml/php_domxml.h | |
parent | f1a2ee55e0ac3c1ff443ef7c67724ff7b773d4c3 (diff) | |
download | php-git-995c565fba10a4abaddd4db556c89b98bdd5fd41.tar.gz |
- change some function name into php style
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index a479d3f410..dc906b79e9 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -46,11 +46,11 @@ extern PHP_MINFO_FUNCTION(domxml); PHP_FUNCTION(xmldoc); PHP_FUNCTION(xmldocfile); PHP_FUNCTION(xmltree); -PHP_FUNCTION(domxml_newxmldoc); +PHP_FUNCTION(domxml_new_xmldoc); /* Class Document methods */ PHP_FUNCTION(domxml_root); -PHP_FUNCTION(domxml_addroot); +PHP_FUNCTION(domxml_add_root); PHP_FUNCTION(domxml_intdtd); PHP_FUNCTION(domxml_dumpmem); @@ -62,7 +62,7 @@ PHP_FUNCTION(domxml_children); PHP_FUNCTION(domxml_lastchild); PHP_FUNCTION(domxml_parent); PHP_FUNCTION(domxml_node); -PHP_FUNCTION(domxml_newchild); +PHP_FUNCTION(domxml_new_child); /* Class Attribute methods */ PHP_FUNCTION(domxml_attrname); |