blob: 2cdc50c986c39dcf9f7c2c8415ed9a907489c65b (
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
32
33
34
35
|
#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*
internal_langinfo(code)
int code
CODE:
#ifdef HAS_NL_LANGINFO
{
char *s;
if ((s = nl_langinfo(code)))
RETVAL = newSVpvn(s, strlen(s));
else
RETVAL = &PL_sv_undef;
}
#else
croak("nl_langinfo() not implemented on this architecture");
#endif
OUTPUT:
RETVAL
|