2019-07-28 10:31:56 +08:00
|
|
|
#ifndef ACL_VSPRINTF_INCLUDE_H
|
2014-11-19 00:25:21 +08:00
|
|
|
#define ACL_VSPRINTF_INCLUDE_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "acl_define.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
ACL_API int acl_vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
|
|
|
|
ACL_API int acl_snprintf(char * buf, size_t size, const char *fmt, ...);
|
|
|
|
ACL_API int acl_vsprintf(char *buf, const char *fmt, va_list args);
|
|
|
|
ACL_API int acl_sprintf(char * buf, const char *fmt, ...);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|