tinywebd

view libtinyweb/src/mime.h @ 16:2873d3ec8c78

starting page generator
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 20 Apr 2015 10:17:22 +0300
parents 0dd50a23f3dd
children
line source
1 /* tinyweb - tiny web server library and daemon
2 * Author: John Tsiombikas <nuclear@member.fsf.org>
3 *
4 * This program is placed in the public domain. Feel free to use it any
5 * way you like. Mentions and retaining this attribution header will be
6 * appreciated, but not required.
7 */
8 #ifndef MIME_H_
9 #define MIME_H_
11 int add_mime_type(const char *suffix, const char *type);
12 const char *mime_type(const char *path);
14 #endif /* MIME_H_ */