1 /* 2 +----------------------------------------------------------------------+ 3 | phar php single-file executable PHP extension | 4 +----------------------------------------------------------------------+ 5 | Copyright (c) 2006-2018 The PHP Group | 6 +----------------------------------------------------------------------+ 7 | This source file is subject to version 3.01 of the PHP license, | 8 | that is bundled with this package in the file LICENSE, and is | 9 | available through the world-wide-web at the following url: | 10 | http://www.php.net/license/3_01.txt. | 11 | If you did not receive a copy of the PHP license and are unable to | 12 | obtain it through the world-wide-web, please send a note to | 13 | license@php.net so we can mail you a copy immediately. | 14 +----------------------------------------------------------------------+ 15 | Authors: Gregory Beaver <cellog@php.net> | 16 | Marcus Boerger <helly@php.net> | 17 +----------------------------------------------------------------------+ 18 */ 19 20 /* $Id$ */ 21 22 BEGIN_EXTERN_C() 23 int phar_wrapper_mkdir(php_stream_wrapper *wrapper, const char *url_from, int mode, int options, php_stream_context *context); 24 int phar_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context); 25 26 #ifdef PHAR_DIRSTREAM 27 php_url* phar_parse_url(php_stream_wrapper *wrapper, const char *filename, const char *mode, int options); 28 29 /* directory handlers */ 30 static size_t phar_dir_write(php_stream *stream, const char *buf, size_t count); 31 static size_t phar_dir_read( php_stream *stream, char *buf, size_t count); 32 static int phar_dir_close(php_stream *stream, int close_handle); 33 static int phar_dir_flush(php_stream *stream); 34 static int phar_dir_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset); 35 #else 36 php_stream* phar_wrapper_open_dir(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **opened_path, php_stream_context *context STREAMS_DC); 37 #endif 38 END_EXTERN_C() 39 40 /* 41 * Local variables: 42 * tab-width: 4 43 * c-basic-offset: 4 44 * End: 45 * vim600: noet sw=4 ts=4 fdm=marker 46 * vim<600: noet sw=4 ts=4 47 */ 48