libdragon
Loading...
Searching...
No Matches
ioctl.h
Go to the documentation of this file.
1
7#ifndef __LIBDRAGON_IOCTL_H
8#define __LIBDRAGON_IOCTL_H
9
22#define _IO(type, nr) ((((type) & 0xFFFF) << 16)|((nr) & 0xFFFF))
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
40int ioctl(int fd, unsigned long cmd, void *argp);
41
42#ifdef __cplusplus
43}
44#endif
45
46#endif
int ioctl(int fd, unsigned long cmd, void *argp)
Perform IO Control Request.
Definition system.c:1174