]> git.ipfire.org Git - thirdparty/squid.git/blame - src/mime.h
NoNewGlobals for MapLabel (#1746)
[thirdparty/squid.git] / src / mime.h
CommitLineData
b65ce00c 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
b65ce00c 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
b65ce00c
FC
7 */
8
bbc27441
AJ
9/* DEBUG: section 25 MIME Parsing and Internal Icons */
10
ff9d9458
FC
11#ifndef SQUID_SRC_MIME_H
12#define SQUID_SRC_MIME_H
b65ce00c 13
8a648e8d 14void mimeInit(char *filename);
2cac2cc9
FC
15const char *mimeGetContentEncoding(const char *fn);
16const char *mimeGetContentType(const char *fn);
8a648e8d
FC
17const char *mimeGetIconURL(const char *fn);
18char mimeGetTransferMode(const char *fn);
2cac2cc9
FC
19bool mimeGetDownloadOption(const char *fn);
20bool mimeGetViewOption(const char *fn);
b65ce00c 21
ff9d9458 22#endif /* SQUID_SRC_MIME_H */
f53969cc 23