summaryrefslogtreecommitdiff
path: root/src/errno/strerror.c
blob: b8fbc6dbf2c56d252dc4219b78a578eed6efdc57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <errno.h>
#include <string.h>

#define E(a,b) a,
static const unsigned char errid[] = {
#include "__strerror.h"
};

#undef E
#define E(a,b) b "\0"
static const char errmsg[] =
#include "__strerror.h"
;

char *strerror(int e)
{
	const char *s;
	int i;
	for (i=0; errid[i] && errid[i] != e; i++);
	for (s=errmsg; i; s++, i--) for (; *s; s++);
	return (char *)s;
}