diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 15:11:51 -0600 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2025-01-02 15:11:51 -0600 |
commit | 87071200872c2450c947047350132aee493033c1 (patch) | |
tree | 49109532d9bbd148b4e59043120037684093be33 /test/test_common.hpp | |
parent | 16379362c02a2472f00fac49cad62788547c9519 (diff) |
Get basic CSV parser operating.
Diffstat (limited to 'test/test_common.hpp')
-rw-r--r-- | test/test_common.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_common.hpp b/test/test_common.hpp index 8912e42..5f6828f 100644 --- a/test/test_common.hpp +++ b/test/test_common.hpp @@ -81,7 +81,9 @@ struct MockFudAllocator { extern MockFudAllocator globalMockFudAlloc; class String; -FudStatus removeRecursive(const String& path); +class StringView; +auto rmFile(StringView filename) -> int; +FudStatus removeRecursive(StringView path); } // namespace fud |