X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=device%2Finclude%2Fctype.h;h=67a24ef06294be5c95bfd7ed3148057e2468db4a;hb=55d8f43c15dffcca08d0cba49247f7a2f8dae48e;hp=f30bf8d9559304376ae59bcb18039efd3c22c6bf;hpb=75a92a4cd930cea4b08c71251b21e386f94916d2;p=fw%2Fsdcc diff --git a/device/include/ctype.h b/device/include/ctype.h index f30bf8d9..67a24ef0 100644 --- a/device/include/ctype.h +++ b/device/include/ctype.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- ctype.h - ANSI functions forward declarations - + Written By - Sandeep Dutta . sandeep.dutta@usa.net (1998) Revisions: 1.0 - June.1.2000 1.0 - Bela Torok / bela.torok@kssg.ch order: function definitions -> macros - corretced macro: isalpha(c) + corretced macro: isalpha(c) added macros: _tolower(c), _toupper(c), tolower(c), toupper(c) toascii(c) @@ -14,19 +14,19 @@ under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - + In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve - what you give them. Help stamp out software-hoarding! + what you give them. Help stamp out software-hoarding! -------------------------------------------------------------------------*/ #ifndef __SDC51_CTYPE_H @@ -68,8 +68,8 @@ extern char isxdigit (unsigned char ) ; #define _toupper(c) ((c) + ('a' - 'A')) */ -// The _tolower & _toupper functions below can applied to any -// alpha characters regardless of the case (upper or lower) +/* The _tolower & _toupper functions below can applied to any + alpha characters regardless of the case (upper or lower) */ #define _tolower(c) ((c) | ('a' - 'A')) #define _toupper(c) ((c) & ~('a' - 'A')) @@ -78,9 +78,3 @@ extern char isxdigit (unsigned char ) ; #define toascii(c) ((c) & 0x7F) #endif - - - - - -