FreeBASIC  0.91.0
file_dirnext.c
Go to the documentation of this file.
1 /* dir() */
2 
3 #include "fb.h"
4 
5 FBCALL FBSTRING *fb_DirNext( int *attrib )
6 {
7  static FBSTRING fname = { 0 };
8  return fb_Dir( &fname, 0, attrib );
9 }