1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:37:35 +00:00

LibC: Implement CODESET for langinfo

This commit is contained in:
Tim Schumacher 2021-06-01 23:37:09 +02:00 committed by Andreas Kling
parent 5ea1810ada
commit 8f9af4a582
4 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,20 @@
/*
* Copyright (c) 2021, the SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <nl_types.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
enum {
CODESET,
};
char* nl_langinfo(nl_item);
__END_DECLS