X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/3e32eb8e48a56bca543faa522909d3d83538c55d..9701b7ab4dc4cd709ad4dcaa750fc0021f15e231:/include/mimetype.h diff --git a/include/mimetype.h b/include/mimetype.h deleted file mode 100644 index a5f8487a..00000000 --- a/include/mimetype.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - ***************************************************************************** - * - * File: mimetype.h - * - * Description: TODO: - * - * $Id: mimetype.h,v 1.1.1.1 2005/10/09 11:00:45 nobunaga Exp $ - * - ***************************************************************************** - */ - -#ifndef _MIMETYPE_H -#define _MIMETYPE_H_ - - -struct MIMETYPE - { - char *ext; - char *type; - }; - -const MIMETYPE mTypes[]= -{ - { ".jpg" , "image/jpeg" }, - { ".gif", "image/gif" }, - { ".jpeg", "image/jpeg" }, - { ".htm", "text/html" }, - { ".html", "text/html" }, - { ".txt", "text/plain" }, - { ".css", "text/css" } -}; - -#endif /* _MIMETYPE_H_ */ - -/* EOF */ -