78 lines
2.9 KiB
C
78 lines
2.9 KiB
C
/* MIT License
|
|
*
|
|
* Copyright (c) 2025 Tyge Løvset
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
#undef STC_API
|
|
#undef STC_DEF
|
|
|
|
#if !defined i_static && !defined STC_STATIC && (defined i_header || defined STC_HEADER || \
|
|
defined i_implement || defined STC_IMPLEMENT)
|
|
#define STC_API extern
|
|
#define STC_DEF
|
|
#else
|
|
#define i_implement
|
|
#if defined __GNUC__ || defined __clang__ || defined __INTEL_LLVM_COMPILER
|
|
#define STC_API static __attribute__((unused))
|
|
#else
|
|
#define STC_API static inline
|
|
#endif
|
|
#define STC_DEF static
|
|
#endif
|
|
#if defined STC_IMPLEMENT || defined i_import
|
|
#define i_implement
|
|
#endif
|
|
|
|
#if defined i_aux && defined i_allocator
|
|
#define _i_aux_alloc
|
|
#endif
|
|
#ifndef i_allocator
|
|
#define i_allocator c
|
|
#endif
|
|
#ifndef i_free
|
|
#define i_malloc c_JOIN(i_allocator, _malloc)
|
|
#define i_calloc c_JOIN(i_allocator, _calloc)
|
|
#define i_realloc c_JOIN(i_allocator, _realloc)
|
|
#define i_free c_JOIN(i_allocator, _free)
|
|
#endif
|
|
|
|
#if defined __clang__ && !defined __cplusplus
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic warning "-Wall"
|
|
#pragma clang diagnostic warning "-Wextra"
|
|
#pragma clang diagnostic warning "-Wpedantic"
|
|
#pragma clang diagnostic warning "-Wconversion"
|
|
#pragma clang diagnostic warning "-Wwrite-strings"
|
|
// ignored
|
|
#pragma clang diagnostic ignored "-Wmissing-field-initializers"
|
|
#elif defined __GNUC__ && !defined __cplusplus
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic warning "-Wall"
|
|
#pragma GCC diagnostic warning "-Wextra"
|
|
#pragma GCC diagnostic warning "-Wpedantic"
|
|
#pragma GCC diagnostic warning "-Wconversion"
|
|
#pragma GCC diagnostic warning "-Wwrite-strings"
|
|
// ignored
|
|
#pragma GCC diagnostic ignored "-Wclobbered"
|
|
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough=3"
|
|
#pragma GCC diagnostic ignored "-Wstringop-overflow="
|
|
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
|
#endif
|