/* $Xorg: XawI18n.h,v 1.3 2000/08/17 19:45:44 cpqbld Exp $ */ /************************************************************ Copyright 1993, 1994, 1998 The Open Group All Rights Reserved. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. ********************************************************/ /* $XFree86: xc/lib/Xaw/XawI18n.h,v 3.12 2001/07/25 15:04:49 dawes Exp $ */ #ifdef HAS_WCTYPE_H #include #ifndef NO_WIDEC_H #include #define wcslen(c) wslen(c) #define wcscpy(d, s) wscpy(d, s) #define wcsncpy(d, s, l) wsncpy(d, s, l) #endif #endif #ifdef HAS_WCHAR_H #include #endif #ifdef AIXV3 #include #endif #ifdef NCR #define iswspace(c) _Xaw_iswspace(c) int _Xaw_iswspace ( wchar_t c ); #endif #ifdef sony #ifndef SVR4 #include #define iswspace(c) jisspace(c) #endif #endif #ifdef __QNX__ #define toascii( c ) ((unsigned)(c) & 0x007f) #endif #include #ifdef USE_XWCHAR_STRING int _Xwcslen ( wchar_t *wstr ); #define wcslen(c) _Xwcslen(c) wchar_t *_Xwcscpy ( wchar_t *wstr1, wchar_t *wstr2 ); #define wcscpy(d,s) _Xwcscpy(d,s) wchar_t *_Xwcsncpy ( wchar_t *wstr1, wchar_t *wstr2, int len ); #define wcsncpy(d, s, l) _Xwcsncpy(d, s, l) #ifdef USE_XMBTOWC #define mbtowc(wc, s, l) _Xmbtowc(wc, s, l) #endif #endif wchar_t _Xaw_atowc ( #if NeedWidePrototypes int c #else unsigned char c #endif ); #ifndef HAS_ISW_FUNCS #include #ifndef iswspace #define iswspace(c) (isascii(c) && isspace(toascii(c))) #endif #endif #ifndef iswalnum #define iswalnum(c) _Xaw_iswalnum(c) int _Xaw_iswalnum ( wchar_t c ); #endif