blob: 8b1fd5a4ef0c04270c678e648a5fe19cc89d1f88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#ifdef I_LANGINFO
# define __USE_GNU 1 /* Enables YESSTR, otherwise only __YESSTR. */
# include <langinfo.h>
#endif
#include "const-c.inc"
MODULE = I18N::Langinfo PACKAGE = I18N::Langinfo
PROTOTYPES: ENABLE
INCLUDE: const-xs.inc
SV*
langinfo(code)
int code
PROTOTYPE: _
CODE:
#ifdef HAS_NL_LANGINFO
RETVAL = newSVpv(nl_langinfo(code), 0);
#else
croak("nl_langinfo() not implemented on this architecture");
#endif
OUTPUT:
RETVAL
|