This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
qmk_firmware/sendchar.h

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