notmuch/util/util.c
David Bremner 85d9219a62 util: add gz_readline
The idea is to provide a more or less drop in replacement for readline
to read from zlib/gzip streams.  Take the opportunity to replace
malloc with talloc.
2014-04-12 07:59:44 -03:00

24 lines
517 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);
}
}