tinywebd

annotate libtinyweb/src/mime.h @ 10:0dd50a23f3dd

separated all the tinyweb functionality out as a library
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 18 Apr 2015 22:47:57 +0300
parents src/mime.h@4f191dbfac7e
children 86f703031228
rev   line source
nuclear@6 1 #ifndef MIME_H_
nuclear@6 2 #define MIME_H_
nuclear@6 3
nuclear@6 4 int add_mime_type(const char *suffix, const char *type);
nuclear@6 5 const char *mime_type(const char *path);
nuclear@6 6
nuclear@6 7 #endif /* MIME_H_ */