blob: 8e7962bfb678bd226adaf620ac1639a8e8278891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
namespace floormat::fs {
[[nodiscard]] bool file_exists(StringView name);
} // namespace floormat::fs
#ifndef fm_FILENAME_MAX
#define fm_FILENAME_MAX (260)
#endif
|