Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/*	$NetBSD: nl_langinfo.c,v 1.1 2019/07/28 10:21:18 martin Exp $	*/

/*
 * Written by Martin Husemann <martin@NetBSD.org>
 * Public domain.
 */

#include <langinfo.h>

/*
 * Cheap and dirty nl_langinfo() - implements just enough
 * for our libcurses in crunched environments.
 */
char *
nl_langinfo(nl_item what)
{
	if (what == CODESET)
		return "ASCII";
	return "";
}