common: add bad format status code

This commit is contained in:
2025-05-12 15:51:24 +01:00
parent 8d9ae5f36a
commit 416472410b

View File

@@ -17,6 +17,7 @@ enum ivy_status {
IVY_ERR_INVALID_VALUE = -8, IVY_ERR_INVALID_VALUE = -8,
IVY_ERR_NO_ENTRY = -9, IVY_ERR_NO_ENTRY = -9,
IVY_ERR_NAME_EXISTS = -10, IVY_ERR_NAME_EXISTS = -10,
IVY_ERR_BAD_FORMAT = -11,
}; };
IVY_API const char *ivy_status_to_string(enum ivy_status status); IVY_API const char *ivy_status_to_string(enum ivy_status status);