#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#ifdef I_LANGINFO
# include <langinfo.h>
#endif
#include "const-c.inc"
SV*
int code
CODE:
#ifdef HAS_NL_LANGINFO
{
char *s;
if ((s = nl_langinfo(code)))
else
RETVAL = &PL_sv_undef;
}
#else
croak("nl_langinfo() not implemented on this architecture");
#endif