www.delorie.com/djgpp/doc/libc-2.01/libc_309.html   search  
Go to the first, previous, next, last section, table of contents.


_fwalk

Syntax

void _fwalk(void (*function)(FILE *file));

Description

For each open file in the system, the given function is called, passing the file pointer as it's only argument

Return Value

None.

Example

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