123456789101112131415161718192021222324252627 |
- #include <stddef.h>
- #include "sendchar.h"
- static int8_t null_sendchar_func(uint8_t c) { return 0; }
- static sendchar_func_t func = null_sendchar_func;
- void print_set_sendchar(sendchar_func_t send) { func = send; }
- void _putchar(char character) { func(character); }
|