summaryrefslogtreecommitdiff
path: root/README.STREAMS
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-11-06 01:56:51 +0000
committerMarcus Boerger <helly@php.net>2002-11-06 01:56:51 +0000
commit8135094b7d6aead45f852c7f7fdf608f4bba6632 (patch)
tree49650c3af307659e4ce0e08e90b8bd534d20f565 /README.STREAMS
parent31b6a5cebf574089222110abdd23def5e26f044f (diff)
downloadphp-git-8135094b7d6aead45f852c7f7fdf608f4bba6632.tar.gz
add fprintf replacement: tested, working, used
Diffstat (limited to 'README.STREAMS')
-rw-r--r--README.STREAMS2
1 files changed, 2 insertions, 0 deletions
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);