From 8135094b7d6aead45f852c7f7fdf608f4bba6632 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Wed, 6 Nov 2002 01:56:51 +0000 Subject: [PATCH] add fprintf replacement: tested, working, used --- README.STREAMS | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.50.1