|
- /**
- * Copyright 2020 Huawei Technologies Co., Ltd
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- /* if some platforms don't have wchar.h, dont't include it */
- #if !(defined(SECUREC_VXWORKS_PLATFORM))
- /* This header file is placed below secinput.h, which will cause tool alarm,
- * but If there is no macro above, it will cause vs2010 compiling alarm
- */
- #if defined(_MSC_VER) && (_MSC_VER >= 1400)
- #ifndef __STDC_WANT_SECURE_LIB__
- /* The order of adjustment is to eliminate alarm of Duplicate Block */
- #define __STDC_WANT_SECURE_LIB__ 0
- #endif
- #ifndef _CRTIMP_ALTERNATIVE
- #define _CRTIMP_ALTERNATIVE /* comment microsoft *_s function */
- #endif
- #endif
- #include <wchar.h>
- #endif
- #define SECUREC_ENABLE_WCHAR_FUNC 0
- #define SECUREC_FORMAT_OUTPUT_INPUT 1
- #ifndef SECUREC_FOR_WCHAR
- #define SECUREC_FOR_WCHAR
- #endif
-
- #include "secinput.h"
-
- #ifndef WEOF
- #define WEOF ((wchar_t)(-1))
- #endif
-
- #include "input.inl"
|