diff options
author | John Coggeshall <john@php.net> | 2005-04-25 20:46:16 +0000 |
---|---|---|
committer | John Coggeshall <john@php.net> | 2005-04-25 20:46:16 +0000 |
commit | 335742c2ef76adb349ad4ad9ab8ba994ccc93320 (patch) | |
tree | cee3c836378f1309ac29836d6df8508c8f0be9df /ext/tidy/php_tidy.h | |
parent | 53e3b0fcb8f878de63e3b3363b4de96766940193 (diff) | |
download | php-git-335742c2ef76adb349ad4ad9ab8ba994ccc93320.tar.gz |
Adding new function tidy_get_opt_doc() to return option documentation at runtime. Thanks to nlopess for the patch
Diffstat (limited to 'ext/tidy/php_tidy.h')
-rw-r--r-- | ext/tidy/php_tidy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/tidy/php_tidy.h b/ext/tidy/php_tidy.h index 7ca065936d..48b8e6efce 100644 --- a/ext/tidy/php_tidy.h +++ b/ext/tidy/php_tidy.h @@ -57,6 +57,9 @@ PHP_FUNCTION(tidy_reset_config); PHP_FUNCTION(tidy_get_config); PHP_FUNCTION(tidy_get_status); PHP_FUNCTION(tidy_get_html_ver); +#if HAVE_TIDYOPTGETDOC +PHP_FUNCTION(tidy_get_opt_doc); +#endif PHP_FUNCTION(tidy_is_xhtml); PHP_FUNCTION(tidy_is_xml); PHP_FUNCTION(tidy_error_count); |