mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-11-10 11:25:01 -05:00
9 lines
139 B
C
9 lines
139 B
C
|
#ifndef SENDCHAR_H
|
||
|
#define SENDCHAR_H
|
||
|
|
||
|
/* transmit a character. return 0 on success, -1 on error. */
|
||
|
int8_t sendchar(uint8_t c);
|
||
|
|
||
|
#endif
|
||
|
|