mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 10:57:34 +08:00
cc05b877a2
first commit acl to github
23 lines
496 B
C
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
|