notmuch/util/util.c
David Bremner 126347b694 Import notmuch_0.38.2.orig.tar.xz
[dgit import orig notmuch_0.38.2.orig.tar.xz]
2023-12-01 07:51:09 -04:00

24 lines
518 B
C

#include "util.h"
#include "error_util.h"
#include <string.h>
#include <errno.h>
const char *
util_error_string (util_status_t errnum)
{
switch (errnum) {
case UTIL_SUCCESS:
return "success";
case UTIL_OUT_OF_MEMORY:
return "out of memory";
case UTIL_EOF:
return "end of file";
case UTIL_ERRNO:
return strerror (errno);
case UTIL_GZERROR:
/* we lack context to be more informative here */
return "zlib error";
default:
INTERNAL_ERROR ("unexpected error status %d", errnum);
}
}