From: Marcus Boerger Date: Wed, 6 Nov 2002 01:56:51 +0000 (+0000) Subject: add fprintf replacement: tested, working, used X-Git-Tag: php-4.3.0RC1~237 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8135094b7d6aead45f852c7f7fdf608f4bba6632;p=php add fprintf replacement: tested, working, used --- diff --git a/README.STREAMS b/README.STREAMS index 0d37277c61..1329dad6d4 100644 --- a/README.STREAMS +++ b/README.STREAMS @@ -28,6 +28,8 @@ The main functions are: PHPAPI size_t php_stream_read(php_stream * stream, char * buf, size_t count); PHPAPI size_t php_stream_write(php_stream * stream, const char * buf, size_t count); +PHPAPI size_t php_stream_printf(php_stream * stream TSRMLS_DC, + const char * fmt, ...); PHPAPI int php_stream_eof(php_stream * stream); PHPAPI int php_stream_getc(php_stream * stream); PHPAPI char *php_stream_gets(php_stream * stream, char *buf, size_t maxlen);