acl  3.5.3.0
acl_vsprintf.h
浏览该文件的文档.
1 #ifndef ACL_VSPRINTF_INCLUDE_H
2 #define ACL_VSPRINTF_INCLUDE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include "acl_define.h"
9 #include <stdarg.h>
10 #include <stdlib.h>
11 
12 ACL_API int acl_vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
13 ACL_API int acl_snprintf(char * buf, size_t size, const char *fmt, ...);
14 ACL_API int acl_vsprintf(char *buf, const char *fmt, va_list args);
15 ACL_API int acl_sprintf(char * buf, const char *fmt, ...);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif
ACL_API int acl_sprintf(char *buf, const char *fmt,...)
ACL_API int acl_vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
ACL_API int acl_vsprintf(char *buf, const char *fmt, va_list args)
ACL_API int acl_snprintf(char *buf, size_t size, const char *fmt,...)
ACL_API void const char * fmt
Definition: acl_aio.h:771