mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
12 lines
283 B
C
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 */
|