mirror of
https://github.com/labwc/labwc.git
synced 2025-11-09 13:30:01 -05:00
10 lines
189 B
C
10 lines
189 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
#include <sys/stat.h>
|
|
#include "common/file-helpers.h"
|
|
|
|
bool
|
|
file_exists(const char *filename)
|
|
{
|
|
struct stat st;
|
|
return (!stat(filename, &st));
|
|
}
|