diff options
author | Tom Van Looy <tom@ctors.net> | 2015-12-25 11:13:28 +0100 |
---|---|---|
committer | Tom Van Looy <tom@ctors.net> | 2015-12-25 11:13:28 +0100 |
commit | 6d0dec27fa243f20a85c5f4a711c895ef8766dcf (patch) | |
tree | cf9a0f44743f39ac8cbb7d5271f969fb6d271f16 /README.STREAMS | |
parent | b3d0178915163c8d52091a6a822007a56ce02801 (diff) | |
download | php-git-6d0dec27fa243f20a85c5f4a711c895ef8766dcf.tar.gz |
Remove leftovers of TSRMLS in docs
Diffstat (limited to 'README.STREAMS')
-rw-r--r-- | README.STREAMS | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/README.STREAMS b/README.STREAMS index 0046e6a754..e95950bde0 100644 --- a/README.STREAMS +++ b/README.STREAMS @@ -28,7 +28,7 @@ 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, +PHPAPI size_t php_stream_printf(php_stream * stream, const char * fmt, ...); PHPAPI int php_stream_eof(php_stream * stream); PHPAPI int php_stream_getc(php_stream * stream); @@ -47,7 +47,7 @@ Opening Streams In most cases, you should use this API: PHPAPI php_stream *php_stream_open_wrapper(const char *path, const char *mode, - int options, char **opened_path TSRMLS_DC); + int options, char **opened_path); Where: path is the file or resource to open. @@ -80,7 +80,7 @@ PHPAPI php_stream *php_stream_fopen_tmpfile(void); Open a FILE * with tmpfile() and convert into a stream. PHPAPI php_stream *php_stream_fopen_temporary_file(const char *dir, - const char *pfx, char **opened_path TSRMLS_DC); + const char *pfx, char **opened_path); Generate a temporary file name and open it. There are some network enabled relatives in php_network.h: |