mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
12eb254d76
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
13 lines
355 B
C
13 lines
355 B
C
#ifndef M_DO_M_DO_PRINTF_H
|
|
#define M_DO_M_DO_PRINTF_H
|
|
|
|
#include "__va_arg.h"
|
|
|
|
void my_PutString(const char*);
|
|
void mDoPrintf_vprintf_Interrupt(char const*, va_list);
|
|
void mDoPrintf_vprintf_Thread(char const*, va_list);
|
|
void mDoPrintf_vprintf(const char*, va_list);
|
|
extern "C" void mDoPrintf_VReport(const char*, va_list);
|
|
|
|
#endif /* M_DO_M_DO_PRINTF_H */
|