44 lines
672 B
C
44 lines
672 B
C
/* $XConsortium: Xlocale.h,v 1.8 91/04/10 10:41:17 rws Exp $ */
|
|
|
|
#ifndef _XLOCALE_H_
|
|
#define _XLOCALE_H_
|
|
|
|
#include <X11/Xfuncproto.h>
|
|
#include <X11/Xosdefs.h>
|
|
|
|
#ifndef X_LOCALE
|
|
#ifdef X_NOT_STDC_ENV
|
|
#define X_LOCALE
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef X_LOCALE
|
|
#include <locale.h>
|
|
#else
|
|
|
|
#define LC_ALL 0
|
|
#define LC_COLLATE 1
|
|
#define LC_CTYPE 2
|
|
#define LC_MONETARY 3
|
|
#define LC_NUMERIC 4
|
|
#define LC_TIME 5
|
|
|
|
_XFUNCPROTOBEGIN
|
|
extern char *_Xsetlocale(
|
|
#if NeedFunctionPrototypes
|
|
int /* category */,
|
|
_Xconst char* /* name */
|
|
#endif
|
|
);
|
|
_XFUNCPROTOEND
|
|
|
|
#define setlocale _Xsetlocale
|
|
|
|
#ifndef NULL
|
|
#define NULL 0
|
|
#endif
|
|
|
|
#endif /* X_LOCALE */
|
|
|
|
#endif /* _XLOCALE_H_ */
|