helly Tue Nov 5 20:56:51 2002 EDT Modified files: /php4 README.STREAMS Log: add fprintf replacement: tested, working, used Index: php4/README.STREAMS diff -u php4/README.STREAMS:1.8 php4/README.STREAMS:1.9 --- php4/README.STREAMS:1.8 Wed Oct 23 17:39:32 2002 +++ php4/README.STREAMS Tue Nov 5 20:56:51 2002 @@ -1,6 +1,6 @@ An Overview of the PHP Streams abstraction ========================================== -$Id: README.STREAMS,v 1.8 2002/10/23 21:39:32 jon Exp $ +$Id: README.STREAMS,v 1.9 2002/11/06 01:56:51 helly Exp $ WARNING: some prototypes in this file are out of date. The information contained here is being integrated into @@ -28,6 +28,8 @@ 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);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php