2023-08-21 21:07:28 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
#include "common/file-helpers.h"
|
2025-07-28 01:02:01 -04:00
|
|
|
#include <sys/stat.h>
|
2023-08-21 21:07:28 +01:00
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
file_exists(const char *filename)
|
|
|
|
|
{
|
|
|
|
|
struct stat st;
|
|
|
|
|
return (!stat(filename, &st));
|
|
|
|
|
}
|