summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strerror_l.c
diff options
context:
space:
mode:
authorschwarze <>2017-09-05 03:16:14 +0000
committerschwarze <>2017-09-05 03:16:14 +0000
commitf63c4fd91b8483c7d4364046fd6ef2d2679dd63a (patch)
treed7f851bfa426cf869a3a3aec05ffba386b6f2ce5 /src/lib/libc/string/strerror_l.c
parentc1d0fec9b838e4df93e396d54f1e4b9a41f7401a (diff)
downloadopenbsd-f63c4fd91b8483c7d4364046fd6ef2d2679dd63a.tar.gz
openbsd-f63c4fd91b8483c7d4364046fd6ef2d2679dd63a.tar.bz2
openbsd-f63c4fd91b8483c7d4364046fd6ef2d2679dd63a.zip
New POSIX xlocale implementation written from scratch.libressl-v2.6.1
Complete in the sense that all POSIX *locale(3) and *_l(3) functions are included, but in OpenBSD, we of course only really care about LC_CTYPE and we only support ASCII and UTF-8. With important help from kettenis@, guenther@, and jca@. Repeated testing in ports bulk builds by naddy@. Additional testing by jca@, sebastia@, dcoppa@, and others. OK kettenis@ dcoppa@, and guenther@ on an earlier version. Riding guenther@'s libc/librthread major bump.
Diffstat (limited to 'src/lib/libc/string/strerror_l.c')
-rw-r--r--src/lib/libc/string/strerror_l.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/libc/string/strerror_l.c b/src/lib/libc/string/strerror_l.c
new file mode 100644
index 0000000000..c16be7a0cc
--- /dev/null
+++ b/src/lib/libc/string/strerror_l.c
@@ -0,0 +1,33 @@
1/* $OpenBSD: strerror_l.c,v 1.1 2017/09/05 03:16:13 schwarze Exp $ */
2/*
3 * Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include <limits.h>
19#include <string.h>
20
21#include "thread_private.h"
22
23char *
24strerror_l(int errnum, locale_t locale)
25{
26 static char sel_buf[NL_TEXTMAX];
27 _THREAD_PRIVATE_KEY(strerror_l);
28 char *p = _THREAD_PRIVATE(strerror_l, sel_buf, NULL);
29
30 return p == NULL ? "no buffer available in strerror_l" :
31 strerror_r(errnum, p, sizeof(sel_buf)) ?
32 "strerror_r failure" : p;
33}