mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-13 09:43:46 +01:00
16 lines
357 B
C
16 lines
357 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#ifndef ZATHURA_CONTENT_TYPE_H
|
|
#define ZATHURA_CONTENT_TYPE_H
|
|
|
|
/**
|
|
* "Guess" the content type of a file. Various methods are tried depending on
|
|
* the available libraries.
|
|
*
|
|
* @param path file name
|
|
* @return content type of path
|
|
*/
|
|
const char* guess_content_type(const char* path);
|
|
|
|
#endif
|