/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef LABWC_FILE_HELPERS_H #define LABWC_FILE_HELPERS_H #include /** * file_exists() - Test if file exists. * @filename: Name of file to test. */ bool file_exists(const char *filename); #endif /* LABWC_FILE_HELPERS_H */