From 0a3962a1053623ab504662c7642902ef1317bb71 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Sat, 7 Aug 2004 10:42:04 +0000 Subject: [PATCH] - Moved the isascii() definition behind the "The following is not part of the ISO 'C' (1994) standard." warning. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14702 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/include/ctype.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/library/include/ctype.h b/library/include/ctype.h index bcdf0c3..0d7e44d 100644 --- a/library/include/ctype.h +++ b/library/include/ctype.h @@ -1,5 +1,5 @@ /* - * $Id: ctype.h,v 1.2 2004-08-07 09:15:33 obarthel Exp $ + * $Id: ctype.h,v 1.3 2004-08-07 10:42:04 obarthel Exp $ * * :ts=4 * @@ -63,12 +63,6 @@ extern int toupper(int c); /****************************************************************************/ -/* The following is not part of the ISO 'C' (1994) standard. */ - -#define isascii(c) ((unsigned)(c) <= 127) - -/****************************************************************************/ - /* * If requested, reimplement the character classification functions as macros; * note that the macro variants ignore the current locale and default to the @@ -113,6 +107,12 @@ extern const unsigned char * const __ctype_table; /****************************************************************************/ +/* The following is not part of the ISO 'C' (1994) standard. */ + +#define isascii(c) ((unsigned)(c) <= 127) + +/****************************************************************************/ + #ifdef __cplusplus } #endif /* __cplusplus */