BEEP-8 SDK 1.0.0
Loading...
Searching...
No Matches
misc.h
Go to the documentation of this file.
1
16#pragma once
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#define ASCII_NUL (0x00)
23#define ASCII_ETX (0x03)
24#define ASCII_BEL (0x07)
25#define ASCII_BS (0x08)
26#define ASCII_CTRL_H (0x08)
27#define ASCII_HT (0x09)
28#define ASCII_LF (0x0a)
29#define ASCII_VT (0x0b)
30#define ASCII_FF (0x0c)
31#define ASCII_CR (0x0d)
32#define ASCII_EOT (0x04)
33#define ASCII_TAB (0x09)
34#define ASCII_ESC (0x1b)
35#define ASCII_SPACE (0x20)
36#define ASCII_DEL (0x7e)
37
38#define fileno(p) ((p)->_file)
39
65extern int ioctl(int fd, int request, ...);
66
67#define UNUSED(x) ((void)x)
68
69#ifdef __cplusplus
70}
71#endif
int ioctl(int fd, int request,...)
Performs a variety of control functions on devices.
Definition misc.c:6