Newer
Older
Scratch / mobius / include / conio.h
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 298 bytes Scratch
#ifndef __CONIO_H
#define __CONIO_H

#ifdef __cplusplus
extern "C"
{
#endif

#include <wchar.h>

/*!
 *  \ingroup	libc
 *  \defgroup	conio	Console I/O
 *  @{
 */

wint_t _wgetch();
wint_t _wgetche();
int _kbhit();
void delay(int ms);

#define kbhit _kbhit

//@}

#ifdef __cplusplus
}
#endif

#endif