"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "see_bekijk-1.1/get_dir.h" of archive see_bekijk-1.1.tgz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 /* ------------------------------------------------------------------------ */
2 /* get_dir.h (GPL) 1997,98 Belgie Belgium */
3 /* Staf Wagemakers */
4 /* ------------------------------------------------------------------------ */
5 #ifndef __GET_DIR_H
6 #define __GET_DIR_H
7 struct dir_data {
8 int dirs;
9 char **dir;
10 int files;
11 char **file;
12 };
13 struct dir_data*
14 get_dir(char *path);
15 #endif