GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: lib/libc/locale/nl_langinfo_l.c Lines: 0 9 0.0 %
Date: 2017-11-07 Branches: 0 6 0.0 %

Line Branch Exec Source
1
/*	$OpenBSD: nl_langinfo_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 <langinfo.h>
19
#include <locale.h>
20
21
#include "rune.h"
22
23
char *
24
nl_langinfo_l(nl_item item, locale_t locale)
25
{
26
	_RuneLocale	*rl;
27
	const char	*s;
28
29
	if (item != CODESET)
30
		return nl_langinfo(item);
31
32
	rl = NULL;
33
	if (locale == _LOCALE_UTF8)
34
		rl = _Utf8RuneLocale;
35
	if (rl == NULL)
36
		rl = &_DefaultRuneLocale;
37
38
	s = rl->rl_codeset;
39
	if (s == NULL)
40
		s = "";
41
42
	return (char *)s;
43
}