acl/lib_acl/include/stdlib/acl_vsprintf.h
zsxxsz cc05b877a2 first commit acl to github
first commit acl to github
2013-08-18 17:42:25 +08:00

23 lines
496 B
C

#ifndef __ACL_VSPRINTF_INCLUDE_H__
#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