chiark / gitweb /
Prep v238: Uncomment now needed headers and unmask now needed functions in src/basic...
[elogind.git] / src / basic / errno-list.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3   This file is part of systemd.
4
5   Copyright 2013 Lennart Poettering
6
7   systemd is free software; you can redistribute it and/or modify it
8   under the terms of the GNU Lesser General Public License as published by
9   the Free Software Foundation; either version 2.1 of the License, or
10   (at your option) any later version.
11
12   systemd is distributed in the hope that it will be useful, but
13   WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   Lesser General Public License for more details.
16
17   You should have received a copy of the GNU Lesser General Public License
18   along with systemd; If not, see <http://www.gnu.org/licenses/>.
19 ***/
20
21 #include <errno.h>
22 #include <string.h>
23
24 #include "errno-list.h"
25 #include "macro.h"
26
27 static const struct errno_name* lookup_errno(register const char *str,
28                                              register GPERF_LEN_TYPE len);
29
30 #include "errno-from-name.h"
31 #include "errno-to-name.h"
32
33 const char *errno_to_name(int id) {
34
35         if (id < 0)
36                 id = -id;
37
38         if (id >= (int) ELEMENTSOF(errno_names))
39                 return NULL;
40
41         return errno_names[id];
42 }
43
44 int errno_from_name(const char *name) {
45         const struct errno_name *sc;
46
47         assert(name);
48
49         sc = lookup_errno(name, strlen(name));
50         if (!sc)
51                 return -EINVAL;
52
53         assert(sc->id > 0);
54         return sc->id;
55 }
56 #if 0 /// UNNEEDED by elogind
57 #endif // 0