|
|
| version 1.4, 2012/03/29 01:31:34 | version 1.4.2.1, 2012/04/02 09:10:30 |
|---|---|
| Line 243 wf_inf(struct tagBufIO *buf, const char *dat, int siz) | Line 243 wf_inf(struct tagBufIO *buf, const char *dat, int siz) |
| /* | /* |
| * io_fmemopen() File buffered stream operations over memory block | * io_fmemopen() - File buffered stream operations over memory block |
| * | * |
| * @base = Base address of memory block, if =NULL Infinit length(auto-grow) | * @base = Base address of memory block, if =NULL Infinit length(auto-grow) |
| * @basesize = Size of memory block | * @basesize = Size of memory block |
| Line 320 io_fmemopen(void ** __restrict base, off_t basesize) | Line 320 io_fmemopen(void ** __restrict base, off_t basesize) |
| } | } |
| /* | /* |
| * io_fmapopen() File buffered stream operations over MMAP block | * io_fmapopen() - File buffered stream operations over MMAP block |
| * | * |
| * @csFile = Filename for MMAP, if =NULL private MMAP block | * @csFile = Filename for MMAP, if =NULL private MMAP block |
| * @mode = File open mode | * @mode = File open mode |
| Line 408 io_fmapopen(const char *csFile, int mode, int perm, in | Line 408 io_fmapopen(const char *csFile, int mode, int perm, in |
| } | } |
| /* | /* |
| * io_dumbFile() Create empry or dumb file with fixed size | * io_dumbFile() - Create empry or dumb file with fixed size |
| * | * |
| * @csFile = Filename for create | * @csFile = Filename for create |
| * @mode = File access permissions | * @mode = File access permissions |
| Line 441 err: | Line 441 err: |
| } | } |
| /* | /* |
| * io_fd2buf() Convert open file handle to buffered file I/O | * io_fd2buf() - Convert open file handle to buffered file I/O |
| * | * |
| * @fd = File handle | * @fd = File handle |
| * @mode = Permissions for new buffered file I/O | * @mode = Permissions for new buffered file I/O |