Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/waterbox/libc/internals/_PDCLIB_clocale.h
2 views
1
/* "C" Locale Support
2
3
This file is part of the Public Domain C Library (PDCLib).
4
Permission is granted to use, modify, and / or redistribute at will.
5
*/
6
7
#ifndef _PDCLIB_CLOCALE_H
8
#define _PDCLIB_CLOCALE_H _PDCLIB_CLOCALE_H
9
#include <locale.h>
10
#ifdef __cplusplus
11
extern "C" {
12
#endif
13
14
void _PDCLIB_initclocale( locale_t l );
15
16
#ifdef __cplusplus
17
}
18
#endif
19
#endif // _PDCLIB_CLOCALE_H
20
21