nuclear@12: /* tinyweb - tiny web server library and daemon nuclear@12: * Author: John Tsiombikas nuclear@12: * nuclear@12: * This program is placed in the public domain. Feel free to use it any nuclear@12: * way you like. Mentions and retaining this attribution header will be nuclear@12: * appreciated, but not required. nuclear@12: */ nuclear@6: #ifndef MIME_H_ nuclear@6: #define MIME_H_ nuclear@6: nuclear@6: int add_mime_type(const char *suffix, const char *type); nuclear@6: const char *mime_type(const char *path); nuclear@6: nuclear@6: #endif /* MIME_H_ */