51#define MAX(a,b) (((a)>(b))?(a):(b))
56size_t write(
int,
const char *,
size_t);
57int read(
int,
char *,
size_t);
int open(const char *, int)
Opens a file descriptor.
int read(int, char *, size_t)
Read bytes from a file descriptor.
int errno
Contains the last error code.
Definition: structcmd.h:53
int close(int)
Closes the file descriptor fd.
unsigned int UINT32
A type definition for a .
Definition: structcmd.h:52
size_t write(int, const char *, size_t)
Writes count bytes from buf to the filedescriptor fd.