blob: d335eec71e6fc8a01c8949c8ec20c592c7a53878 (
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
|
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#ifdef I_LANGINFO
# include <langinfo.h>
#endif
#include "constants.c"
MODULE = I18N::Langinfo PACKAGE = I18N::Langinfo
PROTOTYPES: ENABLE
INCLUDE: constants.xs
SV*
langinfo(code)
int code
CODE:
#ifdef HAS_NL_LANGINFO
char *s = nl_langinfo(code);
RETVAL = newSVpvn(s, strlen(s));
#else
croak("nl_langinfo() not implemented on this architecture");
#endif
OUTPUT:
RETVAL
|