mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
This was actually intentional... put it back in and improve
This commit is contained in:
parent
54ec3a8e2f
commit
ce4e09daff
1 changed files with 1 additions and 1 deletions
|
@ -314,7 +314,7 @@ PHPAPI int cfg_get_string(char *varname, char **result);
|
|||
#include "output.h"
|
||||
#define PHPWRITE(str, str_len) zend_body_write((str), (str_len))
|
||||
#define PUTS(str) zend_body_write((str), strlen((str)))
|
||||
#define PUTC(c) zend_body_write(&(c), 1)
|
||||
#define PUTC(c) (zend_body_write(&(c), 1), (c))
|
||||
#define PHPWRITE_H(str, str_len) zend_header_write((str), (str_len))
|
||||
#define PUTS_H(str) zend_header_write((str), strlen((str)))
|
||||
#define PUTC_H(c) zend_header_write(&(c), 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue