12345678910111213141516171819202122232425262728293031323334 |
- /*
- * category: [string]
- * apply status: iniutil
- * edit status: not
- * build status: windows&linux
- * description:
- */
- #ifndef VSSCANF_H
- #define VSSCANF_H
- #pragma once
- #include "config.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdarg.h>
- #if defined(_MSC_VER) && _MSC_VER < 1900
- TOOLKIT_API int vsscanf(const char* buffer, const char* format, va_list argPtr);
- #endif
- /*iniutil.c used it*/
- TOOLKIT_API int vsscanf1(const char* str, const char* format, va_list arg);
- #ifdef __cplusplus
- } // extern "C" {
- #endif
- #endif // VSSCANF_H
|