Fawkes API Fawkes Development Version
qa_filetype.cpp
1
2/***************************************************************************
3 * qa_filetype.cpp - angle QA app
4 *
5 * Created: Sun Oct 26 10:44:55
6 * Copyright 2008 Tim Niemueller [www.niemueller.de]
7 *
8 ****************************************************************************/
9
10/* This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version. A runtime exception applies to
14 * this software (see LICENSE.GPL_WRE file mentioned below for details).
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Library General Public License for more details.
20 *
21 * Read the full text in the LICENSE.GPL_WRE file in the doc directory.
22 */
23
24#include <utils/system/filetype.h>
25
26#include <cstdio>
27
28using namespace fawkes;
29
30int
31main(int argc, char **argv)
32{
33 printf("File type: %s\n", filetype_file(argv[0]).c_str());
34 printf("Mime type: %s\n", mimetype_file(argv[0]).c_str());
35
36 return 0;
37}
Fawkes library namespace.
std::string mimetype_file(const char *filename)
Get mime-type of file.
Definition: filetype.cpp:111
std::string filetype_file(const char *filename)
Get filetype of file.
Definition: filetype.cpp:45