Go to the source code of this file.
Defines | |
#define | MAX(a, b) (((a)>(b))?(a):(b)) |
A macro that returns the maximum of a and b. More... | |
Typedefs | |
typedef unsigned int | UINT32 |
A type definition for a . More... | |
Functions | |
int | open (const char *, int) |
Opens a file descriptor. More... | |
int | close (int) |
Closes the file descriptor fd. More... | |
size_t | write (int, const char *, size_t) |
Writes count bytes from buf to the filedescriptor fd. More... | |
int | read (int, char *, size_t) |
Read bytes from a file descriptor. More... | |
Variables | |
int | errno |
Contains the last error code. More... |
Details.
|
A macro that returns the maximum of a and b.
Details. |
|
A type definition for a . Details. |
|
Closes the file descriptor fd.
|
|
Opens a file descriptor.
|
|
Read bytes from a file descriptor.
|
|
Writes count bytes from buf to the filedescriptor fd.
|
|
Contains the last error code.
|