10 lines
222 B
C
10 lines
222 B
C
// SPDX-FileCopyrightText: 2023 Jeff Epler for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#include "arduino_hooks.h"
|
|
|
|
bool (*_kbhit_hook)(void);
|
|
uint8_t (*_getch_hook)(void);
|
|
void (*_putch_hook)(uint8_t ch);
|
|
|