mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
1a8916786f
This is the result of running $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h in the util directory
24 lines
518 B
C
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);
|
|
}
|
|
}
|