blob: e73d76effdf3d1260f39f3d53d38f05ec2eb9bd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <triscv/common.h>
static const char *err_strs[] = {
[OK] = "OK",
[ERR_FULL] = "full",
[ERR_EXISTS] = "exists",
[ERR_OOB] = "out of bounds"
};
const char *err_str(stat_t s)
{
return err_strs[s];
}
|