Sha256: 5c1a7fff0117e64cb93f8ef95d9eeb6a25145858330d132db9529cdf853faa23
Contents?: true
Size: 733 Bytes
Versions: 2
Compression:
Stored size: 733 Bytes
Contents
/* ========================================================================= Ceedling - Test-Centered Build System for C ThrowTheSwitch.org Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams SPDX-License-Identifier: MIT ========================================================================= */ #ifndef bar_H #define bar_H #include "custom_types.h" void bar_turn_on(void); void bar_print_message(const char * message); void bar_print_message_formatted(const char * format, ...); void bar_numbers(int one, int two, char three); void bar_const_test(const char * a, char * const b, const int c); custom_t bar_needs_custom_type(void); const char * bar_return_const_ptr(int one); #endif // bar_H
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ceedling-1.0.1 | plugins/fff/examples/fff_example/src/bar.h |
ceedling-1.0.0 | plugins/fff/examples/fff_example/src/bar.h |