1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef READSUBDIR_H #define READSUBDIR_H #include "direntry.h" typedef struct readsubdir { DIR *dir; int pos; char *name; void (*pause)(); } readsubdir; extern void readsubdir_init(); extern int readsubdir_next(); #define READSUBDIR_NAMELEN 10 #endif