mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Enable format checking for strpprintf
This commit is contained in:
@@ -41,9 +41,9 @@ PHPAPI size_t spprintf( char **pbuf, size_t max_len, const char *format, ...) PH
|
||||
|
||||
PHPAPI size_t vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) PHP_ATTRIBUTE_FORMAT(printf, 3, 0);
|
||||
|
||||
PHPAPI zend_string *vstrpprintf(size_t max_len, const char *format, va_list ap);
|
||||
PHPAPI zend_string *vstrpprintf(size_t max_len, const char *format, va_list ap) PHP_ATTRIBUTE_FORMAT(printf, 2, 0);;
|
||||
|
||||
PHPAPI zend_string *strpprintf(size_t max_len, const char *format, ...);
|
||||
PHPAPI zend_string *strpprintf(size_t max_len, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
|
||||
END_EXTERN_C()
|
||||
|
||||
#endif /* SNPRINTF_H */
|
||||
|
||||
Reference in New Issue
Block a user