16 lines
342 B
C
16 lines
342 B
C
|
|
#include <blue/core/status.h>
|
||
|
|
#include <stddef.h>
|
||
|
|
|
||
|
|
#define ENUM_STR(s) \
|
||
|
|
case s: \
|
||
|
|
return #s;
|
||
|
|
|
||
|
|
const char *b_status_to_string(b_status status)
|
||
|
|
{
|
||
|
|
switch (status) {
|
||
|
|
ENUM_STR(B_SUCCESS);
|
||
|
|
default:
|
||
|
|
return NULL;
|
||
|
|
}
|
||
|
|
}
|