Lamp-Da 0.1
A compact lantern project
Loading...
Searching...
No Matches
text_out.h
Go to the documentation of this file.
1
5#ifndef BSP_TEXT_OUT_H
6#define BSP_TEXT_OUT_H
7
8#ifdef __cplusplus
9namespace lampda {
10namespace bsp {
11
12#define EXTERNC extern "C"
13#else
14#define EXTERNC
15#endif
16
21EXTERNC void lampda_print_init();
22
23EXTERNC void lampda_print(const char* format, ...);
24
26EXTERNC void lampda_print_raw(const char* format, ...);
27
28#undef EXTERNC
29
30#ifdef __cplusplus
31} // namespace bsp
32} // namespace lampda
33#endif
34
35#endif
void lampda_print_raw(const char *format,...)
C linkage to print functions.
Definition: text_out.cpp:197
void lampda_print(const char *format,...)
C linkage to print functions.
Definition: text_out.cpp:206
void lampda_print_init()
Definition: text_out.cpp:189
Program scope.
Definition: control_fixed_modes.hpp:12