labwc/include/common/file-helpers.h

12 lines
283 B
C

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