My Project
dirlisting.h
Go to the documentation of this file.
1 
8 #ifndef DIRLISTING_H
9 #define DIRLISTING_H
10 
11 #include <stdio.h>
12 
13 
23 void dirlistingBegin(FILE *stream, const char dirName[]);
24 
31 void dirlistingPrintEntry(FILE *stream, const char dirName[],
32  const char entryName[]);
33 
38 void dirlistingEnd(FILE *stream);
39 
40 
41 #endif /* DIRLISTING_H */
void dirlistingEnd(FILE *stream)
Prints the end of a directory-listing HTML page to a stream.
void dirlistingBegin(FILE *stream, const char dirName[])
Prints the beginning of a directory-listing HTML page to a stream.
void dirlistingPrintEntry(FILE *stream, const char dirName[], const char entryName[])
Prints an entry of a directory listing to a stream.