Sha256: 25674d1ff1f6e7dbf6dd91d01133be9564925d1aee8f838dad494cd77b7c5e83
Contents?: true
Size: 545 Bytes
Versions: 2
Compression:
Stored size: 545 Bytes
Contents
/* ========================================================================= CMock - Automatic Mock Generation for C ThrowTheSwitch.org Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams SPDX-License-Identifier: MIT ========================================================================= */ #include <stdio.h> #include "foo.h" int real_main(int argc, char ** argv) { printf("Hello world!\n"); return 0; } #ifndef TEST int main(int argc, char ** argv) { return real_main(argc, argv); } #endif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ceedling-1.0.1 | vendor/cmock/examples/make_example/src/main.c |
ceedling-1.0.0 | vendor/cmock/examples/make_example/src/main.c |