acl/lib_acl_cpp/include/acl_cpp/stdlib/snprintf.hpp
zsxxsz cc05b877a2 first commit acl to github
first commit acl to github
2013-08-18 17:42:25 +08:00

15 lines
266 B
C++

#pragma once
#include "acl_cpp/acl_cpp_define.hpp"
#ifdef WIN32
#include <stdarg.h>
namespace acl {
ACL_CPP_API int snprintf(char *buf, size_t size, const char *fmt, ...);
ACL_CPP_API int vsnprintf(char *buf, size_t size, const char *fmt, va_list ap);
}
#endif