blob: 6b3c24eb8b94b800b25928b35f4c5cce3dc0956a (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <Corrade/Containers/ArrayView.h>
namespace floormat {
StringView get_error_string(ArrayView<char> buf, int error);
StringView get_error_string(ArrayView<char> buf);
} // namespace floormat
|