/usr/include/libwfut-0.2/libwfut/platform.h is in libwfut-0.2-dev 0.2.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | // This file may be redistributed and modified only under the terms of
// the GNU Lesser General Public License (See COPYING for details).
// Copyright (C) 2007 Simon Goodall
#ifndef LIBWFUT_PLATFORM_H
#define LIBWFUT_PLATFORM_H 1
#include <string>
#include <list>
namespace WFUT {
FILE *os_create_tmpfile();
void os_free_tmpfile(FILE *fp);
int os_mkdir(const std::string &dir);
bool os_exists(const std::string &file);
int os_set_executable(const std::string &file);
int os_dir_walk(const std::string &path, const std::list<std::string> &excludes, std::list<std::string> &files);
} /* namespace WFUT */
#endif /* LIBWFUT_PLATFORM_H */
|