1 Star 1 Fork 57

小猪快跑 / libboundscheck

forked from openEuler / libboundscheck 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
boundscheck_config.h.in 7.72 KB
一键复制 编辑 原始数据 按行查看 历史
小猪快跑 提交于 2022-01-11 23:46 . Using cmake to build libboundscheck.
/*
* Licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
* Create: 2022-01-10
*/
#pragma once
#ifndef __SECUREC_CONFIG_H__
#define __SECUREC_CONFIG_H__
#define SECUREC_VERSION_MAJOR @SECUREC_VERSION_MAJOR@
#define SECUREC_VERSION_MINOR @SECUREC_VERSION_MINOR@
#cmakedefine SECUREC_HAVE_MEMORY_H @SECUREC_HAVE_MEMORY_H@
#cmakedefine SECUREC_HAVE_ERRNO_H @SECUREC_HAVE_ERRNO_H@
#cmakedefine SECUREC_HAVE_STDARG_H @SECUREC_HAVE_STDARG_H@
#cmakedefine SECUREC_HAVE_STDDEF_H @SECUREC_HAVE_STDDEF_H@
#cmakedefine SECUREC_HAVE_STDIO_H @SECUREC_HAVE_STDIO_H@
#cmakedefine SECUREC_HAVE_STDLIB_H @SECUREC_HAVE_STDLIB_H@
#cmakedefine SECUREC_HAVE_STRING_H @SECUREC_HAVE_STRING_H@
#cmakedefine SECUREC_HAVE_CTYPES_H @SECUREC_HAVE_CTYPES_H@
#cmakedefine SECUREC_HAVE_WCTYPES_H @SECUREC_HAVE_WCTYPES_H@
#cmakedefine SECUREC_HAVE_MEMSET @SECUREC_HAVE_MEMSET@
#ifndef SECUREC_HAVE_MEMSET
#define SECUREC_ENABLE_MEMSET 1
#else
#define SECUREC_ENABLE_MEMSET 0
#endif
#cmakedefine SECUREC_HAVE_MEMMOVE @SECUREC_HAVE_MEMMOVE@
#ifndef SECUREC_HAVE_MEMMOVE
#define SECUREC_ENABLE_MEMMOVE 1
#else
#define SECUREC_ENABLE_MEMMOVE 0
#endif
#cmakedefine SECUREC_HAVE_MEMCPY @SECUREC_HAVE_MEMCPY@
#ifndef SECUREC_HAVE_MEMCPY
#define SECUREC_ENABLE_MEMCPY 1
#else
#define SECUREC_ENABLE_MEMCPY 0
#endif
#cmakedefine SECUREC_HAVE_STRCPY @SECUREC_HAVE_STRCPY@
#ifndef SECUREC_HAVE_STRCPY
#define SECUREC_ENABLE_STRCPY 1
#else
#define SECUREC_ENABLE_STRCPY 0
#endif
#cmakedefine SECUREC_HAVE_STRNCPY @SECUREC_HAVE_STRNCPY@
#ifndef SECUREC_HAVE_STRNCPY
#define SECUREC_ENABLE_STRNCPY 1
#else
#define SECUREC_ENABLE_STRNCPY 0
#endif
#cmakedefine SECUREC_HAVE_STRCAT @SECUREC_HAVE_STRCAT@
#ifndef SECUREC_HAVE_STRCAT
#define SECUREC_ENABLE_STRCAT 1
#else
#define SECUREC_ENABLE_STRCAT 0
#endif
#cmakedefine SECUREC_HAVE_STRNCAT @SECUREC_HAVE_STRNCAT@
#ifndef SECUREC_HAVE_STRNCAT
#define SECUREC_ENABLE_STRNCAT 1
#else
#define SECUREC_ENABLE_STRNCAT 0
#endif
#cmakedefine SECUREC_HAVE_VSPRINTF @SECUREC_HAVE_VSPRINTF@
#ifndef SECUREC_HAVE_VSPRINTF
#define SECUREC_ENABLE_VSPRINTF 1
#else
#define SECUREC_ENABLE_VSPRINTF 0
#endif
#cmakedefine SECUREC_HAVE_SPRINTF @SECUREC_HAVE_SPRINTF@
#ifndef SECUREC_HAVE_SPRINTF
#define SECUREC_ENABLE_SPRINTF 1
#else
#define SECUREC_ENABLE_SPRINTF 0
#endif
#cmakedefine SECUREC_HAVE_VSNPRINTF @SECUREC_HAVE_VSNPRINTF@
#ifndef SECUREC_HAVE_VSNPRINTF
#define SECUREC_ENABLE_VSNPRINTF 1
#else
#define SECUREC_ENABLE_VSNPRINTF 0
#endif
#cmakedefine SECUREC_HAVE_SNPRINTF @SECUREC_HAVE_SNPRINTF@
#ifndef SECUREC_HAVE_SNPRINTF
#define SECUREC_ENABLE_SNPRINTF 1
#else
#define SECUREC_ENABLE_SNPRINTF 0
#endif
#cmakedefine SECUREC_HAVE_SNPRINTF_WIN32 @SECUREC_HAVE_SNPRINTF_WIN32@
#ifndef SECUREC_HAVE_SNPRINTF_WIN32
#define SECUREC_ENABLE_SNPRINTF_WIN32 1
#else
#define SECUREC_ENABLE_SNPRINTF_WIN32 0
#endif
#cmakedefine SECUREC_HAVE_SCANF @SECUREC_HAVE_SCANF@
#ifndef SECUREC_HAVE_SCANF
#define SECUREC_ENABLE_SCANF 1
#else
#define SECUREC_ENABLE_SCANF 0
#endif
#cmakedefine SECUREC_HAVE_VSCANF @SECUREC_HAVE_VSCANF@
#ifndef SECUREC_HAVE_VSCANF
#define SECUREC_ENABLE_VSCANF 1
#else
#define SECUREC_ENABLE_VSCANF 0
#endif
#cmakedefine SECUREC_HAVE_SSCANF @SECUREC_HAVE_SSCANF@
#ifndef SECUREC_HAVE_SSCANF
#define SECUREC_ENABLE_SSCANF 1
#else
#define SECUREC_ENABLE_SSCANF 0
#endif
#cmakedefine SECUREC_HAVE_VSSCANF @SECUREC_HAVE_VSSCANF@
#ifndef SECUREC_HAVE_VSSCANF
#define SECUREC_ENABLE_VSSCANF 1
#else
#define SECUREC_ENABLE_VSSCANF 0
#endif
#cmakedefine SECUREC_HAVE_FSCANF @SECUREC_HAVE_FSCANF@
#ifndef SECUREC_HAVE_FSCANF
#define SECUREC_ENABLE_FSCANF 1
#else
#define SECUREC_ENABLE_FSCANF 0
#endif
#cmakedefine SECUREC_HAVE_VFSCANF @SECUREC_HAVE_VFSCANF@
#ifndef SECUREC_HAVE_VFSCANF
#define SECUREC_ENABLE_VFSCANF 1
#else
#define SECUREC_ENABLE_VFSCANF 0
#endif
#cmakedefine SECUREC_HAVE_STRTOK @SECUREC_HAVE_STRTOK@
#ifndef SECUREC_HAVE_STRTOK
#define SECUREC_ENABLE_STRTOK 1
#else
#define SECUREC_ENABLE_STRTOK 0
#endif
#cmakedefine SECUREC_HAVE_GETS @SECUREC_HAVE_GETS@
#ifndef SECUREC_HAVE_GETS
#define SECUREC_ENABLE_GETS 1
#else
#define SECUREC_ENABLE_GETS 0
#endif
#cmakedefine SECUREC_HAVE_WCHAR_T @SECUREC_HAVE_WCHAR_T@
#ifndef SECUREC_HAVE_WCHAR_T
#define SECUREC_ENABLE_WCHAR_FUNC 0
#else
#define SECUREC_ENABLE_WCHAR_FUNC 1
#endif
#cmakedefine SECUREC_HAVE_MEMMOVE_W @SECUREC_HAVE_MEMMOVE_W@
#ifndef SECUREC_HAVE_MEMMOVE_W
#define SECUREC_ENABLE_MEMMOVE_W 1
#else
#define SECUREC_ENABLE_MEMMOVE_W 0
#endif
#cmakedefine SECUREC_HAVE_MEMCPY_W @SECUREC_HAVE_MEMCPY_W@
#ifndef SECUREC_HAVE_MEMCPY_W
#define SECUREC_ENABLE_MEMCPY_W 1
#else
#define SECUREC_ENABLE_MEMCPY_W 0
#endif
#cmakedefine SECUREC_HAVE_STRCPY_W @SECUREC_HAVE_STRCPY_W@
#ifndef SECUREC_HAVE_STRCPY_W
#define SECUREC_ENABLE_STRCPY_W 1
#else
#define SECUREC_ENABLE_STRCPY_W 0
#endif
#cmakedefine SECUREC_HAVE_STRNCPY_W @SECUREC_HAVE_STRNCPY_W@
#ifndef SECUREC_HAVE_STRNCPY_W
#define SECUREC_ENABLE_STRNCPY_W 1
#else
#define SECUREC_ENABLE_STRNCPY_W 0
#endif
#cmakedefine SECUREC_HAVE_STRCAT_W @SECUREC_HAVE_STRCAT_W@
#ifndef SECUREC_HAVE_STRCAT_W
#define SECUREC_ENABLE_STRCAT_W 1
#else
#define SECUREC_ENABLE_STRCAT_W 0
#endif
#cmakedefine SECUREC_HAVE_STRNCAT_W @SECUREC_HAVE_STRNCAT_W@
#ifndef SECUREC_HAVE_STRNCAT_W
#define SECUREC_ENABLE_STRNCAT_W 1
#else
#define SECUREC_ENABLE_STRNCAT_W 0
#endif
#cmakedefine SECUREC_HAVE_VSPRINTF_W @SECUREC_HAVE_VSPRINTF_W@
#ifndef SECUREC_HAVE_VSPRINTF_W
#define SECUREC_ENABLE_VSPRINTF_W 1
#else
#define SECUREC_ENABLE_VSPRINTF_W 0
#endif
#cmakedefine SECUREC_HAVE_SPRINTF_W @SECUREC_HAVE_SPRINTF_W@
#ifndef SECUREC_HAVE_SPRINTF_W
#define SECUREC_ENABLE_SPRINTF_W 1
#else
#define SECUREC_ENABLE_SPRINTF_W 0
#endif
#cmakedefine SECUREC_HAVE_SCANF_W @SECUREC_HAVE_SCANF_W@
#ifndef SECUREC_HAVE_SCANF_W
#define SECUREC_ENABLE_SCANF_W 1
#else
#define SECUREC_ENABLE_SCANF_W 0
#endif
#cmakedefine SECUREC_HAVE_VSCANF_W @SECUREC_HAVE_VSCANF_W@
#ifndef SECUREC_HAVE_VSCANF_W
#define SECUREC_ENABLE_VSCANF_W 1
#else
#define SECUREC_ENABLE_VSCANF_W 0
#endif
#cmakedefine SECUREC_HAVE_SSCANF_W @SECUREC_HAVE_SSCANF_W@
#ifndef SECUREC_HAVE_SSCANF_W
#define SECUREC_ENABLE_SSCANF_W 1
#else
#define SECUREC_ENABLE_SSCANF_W 0
#endif
#cmakedefine SECUREC_HAVE_VSSCANF_W @SECUREC_HAVE_VSSCANF_W@
#ifndef SECUREC_HAVE_VSSCANF_W
#define SECUREC_ENABLE_VSSCANF_W 1
#else
#define SECUREC_ENABLE_VSSCANF_W 0
#endif
#cmakedefine SECUREC_HAVE_FSCANF_W @SECUREC_HAVE_FSCANF_W@
#ifndef SECUREC_HAVE_FSCANF_W
#define SECUREC_ENABLE_FSCANF_W 1
#else
#define SECUREC_ENABLE_FSCANF_W 0
#endif
#cmakedefine SECUREC_HAVE_VFSCANF_W @SECUREC_HAVE_VFSCANF_W@
#ifndef SECUREC_HAVE_VFSCANF_W
#define SECUREC_ENABLE_VFSCANF_W 1
#else
#define SECUREC_ENABLE_VFSCANF_W 0
#endif
#cmakedefine SECUREC_HAVE_STRTOK_W @SECUREC_HAVE_STRTOK_W@
#ifndef SECUREC_HAVE_STRTOK_W
#define SECUREC_ENABLE_STRTOK_W 1
#else
#define SECUREC_ENABLE_STRTOK_W 0
#endif
#endif
1
https://gitee.com/jackieathome/libboundscheck.git
git@gitee.com:jackieathome/libboundscheck.git
jackieathome
libboundscheck
libboundscheck
dev_pr_x

搜索帮助