2002-04-10 09:09:22 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
2002-04-10 09:09:22 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2012-01-01 21:15:04 +08:00
|
|
|
| Copyright (c) 1997-2012 The PHP Group |
|
2002-04-10 09:09:22 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2002-04-10 09:09:22 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2002-04-10 09:09:22 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Marcus Boerger <helly@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-02-19 16:40:19 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-02-07 20:47:44 +08:00
|
|
|
/*
|
2002-06-24 06:12:22 +08:00
|
|
|
|
|
|
|
The pbuf parameter of all spprintf version receives a pointer to the allocated
|
|
|
|
buffer. This buffer must be freed manually after usage using efree() function.
|
|
|
|
The buffer will allways be terminated by a zero character. When pbuf is NULL
|
|
|
|
the function can be used to calculate the required size of the buffer but for
|
|
|
|
that purpose snprintf is faster. When both pbuf and the return value are 0
|
|
|
|
than you are out of memory.
|
|
|
|
|
|
|
|
There is also snprintf: See difference explained in snprintf.h
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2002-04-10 09:09:22 +08:00
|
|
|
#ifndef SPPRINTF_H
|
|
|
|
#define SPPRINTF_H
|
|
|
|
|
|
|
|
#include "snprintf.h"
|
|
|
|
|
2002-05-20 09:32:48 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2003-08-28 13:23:08 +08:00
|
|
|
PHPAPI int spprintf( char **pbuf, size_t max_len, const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 3, 4);
|
2002-04-10 09:09:22 +08:00
|
|
|
|
2003-08-28 13:23:08 +08:00
|
|
|
PHPAPI int vspprintf(char **pbuf, size_t max_len, const char *format, va_list ap) PHP_ATTRIBUTE_FORMAT(printf, 3, 0);
|
2002-05-20 09:32:48 +08:00
|
|
|
END_EXTERN_C()
|
2002-04-10 09:09:22 +08:00
|
|
|
|
|
|
|
#endif /* SNPRINTF_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
*/
|