Sha256: a5b7c70411b2deb3a9efd068f122b82b24eb3fe1774ddc14a3ec24bb262c9836
Contents?: true
Size: 966 Bytes
Versions: 2
Compression:
Stored size: 966 Bytes
Contents
/* ========================================================================= Ceedling - Test-Centered Build System for C ThrowTheSwitch.org Copyright (c) 2010-24 Mike Karlesky, Mark VanderVoord, & Greg Williams SPDX-License-Identifier: MIT ========================================================================= */ #include "global_fakes.h" #include <string.h> // for memcpy DEFINE_FAKE_VOID_FUNC1(voidfunc1, int); DEFINE_FAKE_VOID_FUNC2(voidfunc2, char, char); DEFINE_FAKE_VALUE_FUNC0(long, longfunc0); DEFINE_FAKE_VALUE_FUNC0(enum MYBOOL, enumfunc0); DEFINE_FAKE_VALUE_FUNC0(struct MyStruct, structfunc0); DEFINE_FAKE_VOID_FUNC3_VARARG(voidfunc3var, const char *, int, ...); #ifndef __cplusplus DEFINE_FAKE_VALUE_FUNC3(int, strlcpy3, char* const, const char* const, const size_t); #endif /* __cplusplus */ DEFINE_FAKE_VOID_FUNC20(voidfunc20, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int, int);
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ceedling-1.0.1 | plugins/fff/vendor/fff/test/global_fakes.c |
ceedling-1.0.0 | plugins/fff/vendor/fff/test/global_fakes.c |