xref: /PHP-7.3/main/spprintf.h (revision a6519d05)
1 /*
2    +----------------------------------------------------------------------+
3    | PHP Version 7                                                        |
4    +----------------------------------------------------------------------+
5    | Copyright (c) 1997-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    | Author: Marcus Boerger <helly@php.net>                               |
16    +----------------------------------------------------------------------+
17  */
18 
19 #ifndef SPPRINTF_H
20 #define SPPRINTF_H
21 
22 #include "snprintf.h"
23 #include "zend_smart_str_public.h"
24 #include "zend_smart_string_public.h"
25 
26 BEGIN_EXTERN_C()
27 PHPAPI void php_printf_to_smart_string(smart_string *buf, const char *format, va_list ap);
28 PHPAPI void php_printf_to_smart_str(smart_str *buf, const char *format, va_list ap);
29 END_EXTERN_C()
30 
31 #define spprintf zend_spprintf
32 #define strpprintf zend_strpprintf
33 #define vspprintf zend_vspprintf
34 #define vstrpprintf zend_vstrpprintf
35 
36 #endif /* SNPRINTF_H */
37 
38 /*
39  * Local variables:
40  * tab-width: 4
41  * c-basic-offset: 4
42  * End:
43  * vim600: sw=4 ts=4 fdm=marker
44  * vim<600: sw=4 ts=4
45  */
46