| www.delorie.com/djgpp/doc/libc-2.01/libc_309.html | search |
void _fwalk(void (*function)(FILE *file));
For each open file in the system, the given function is called, passing the file pointer as it's only argument
None.
void pfile(FILE *x)
{ printf("FILE at %p\n", x); }
_fwalk(pfile);
Go to the first, previous, next, last section, table of contents.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |