mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- Reverted r296062 and r296065
This commit is contained in:
parent
ea539c8b88
commit
af49e58f51
108 changed files with 3603 additions and 4297 deletions
13
main/php.h
13
main/php.h
|
@ -386,7 +386,20 @@ END_EXTERN_C()
|
|||
|
||||
/* Output support */
|
||||
#include "main/php_output.h"
|
||||
#define PHPWRITE(str, str_len) php_body_write((str), (str_len) TSRMLS_CC)
|
||||
#define PUTS(str) do { \
|
||||
const char *__str = (str); \
|
||||
php_body_write(__str, strlen(__str) TSRMLS_CC); \
|
||||
} while (0)
|
||||
|
||||
#define PUTC(c) (php_body_write(&(c), 1 TSRMLS_CC), (c))
|
||||
#define PHPWRITE_H(str, str_len) php_header_write((str), (str_len) TSRMLS_CC)
|
||||
#define PUTS_H(str) do { \
|
||||
const char *__str = (str); \
|
||||
php_header_write(__str, strlen(__str) TSRMLS_CC); \
|
||||
} while (0)
|
||||
|
||||
#define PUTC_H(c) (php_header_write(&(c), 1 TSRMLS_CC), (c))
|
||||
|
||||
#include "php_streams.h"
|
||||
#include "php_memory_streams.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue