wxMaxima
Loading...
Searching...
No Matches
structcmd.h
Go to the documentation of this file.
1
51#define MAX(a,b) (((a)>(b))?(a):(b))
52typedef unsigned int UINT32;
54int open(const char *,int);
55int close(int);
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.