From: Zeev Suraski Date: Fri, 19 May 2000 09:32:33 +0000 (+0000) Subject: Open these up for the API X-Git-Tag: php-4.0.0~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c80906e4ccdad4a63e8600e66ea21ba406fb5fd0;p=php Open these up for the API --- diff --git a/Zend/zend_highlight.c b/Zend/zend_highlight.c index 378b0380ae..0558d836b4 100644 --- a/Zend/zend_highlight.c +++ b/Zend/zend_highlight.c @@ -33,7 +33,7 @@ extern int zendleng; #define zendleng zend_get_zendleng(CLS_C) #endif -static void html_putc(char c) +ZEND_API void zend_html_putc(char c) { switch (c) { case '\n': @@ -61,12 +61,12 @@ static void html_putc(char c) } -static void html_puts(char *s, uint len) +ZEND_API void zend_html_puts(char *s, uint len) { register char *ptr=s, *end=s+len; while (ptr