diff options
| author | Peter Tyser <ptyser@xes-inc.com> | 2010-04-12 22:28:05 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-04-13 09:13:04 +0200 | 
| commit | 78acc472d9719316f22e002a009a998d9ceec29d (patch) | |
| tree | aa99461b3d693cf3691869abea485091860a66d0 /lib/ctype.c | |
| parent | ea0364f1bbfed1e3ea711147420875cf338fe77a (diff) | |
| download | olio-uboot-2014.01-78acc472d9719316f22e002a009a998d9ceec29d.tar.xz olio-uboot-2014.01-78acc472d9719316f22e002a009a998d9ceec29d.zip | |
Rename lib_generic/ to lib/
Now that the other architecture-specific lib directories have been
moved out of the top-level directory there's not much reason to have the
'_generic' suffix on the common lib directory.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'lib/ctype.c')
| -rw-r--r-- | lib/ctype.c | 56 | 
1 files changed, 56 insertions, 0 deletions
| diff --git a/lib/ctype.c b/lib/ctype.c new file mode 100644 index 000000000..6ed0468a2 --- /dev/null +++ b/lib/ctype.c @@ -0,0 +1,56 @@ +/* + * (C) Copyright 2000 + * Wolfgang Denk, DENX Software Engineering, wd@denx.de. + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, 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, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +/* + *  linux/lib/ctype.c + * + *  Copyright (C) 1991, 1992  Linus Torvalds + */ + +#include <linux/ctype.h> + +unsigned char _ctype[] = { +_C,_C,_C,_C,_C,_C,_C,_C,			/* 0-7 */ +_C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C,		/* 8-15 */ +_C,_C,_C,_C,_C,_C,_C,_C,			/* 16-23 */ +_C,_C,_C,_C,_C,_C,_C,_C,			/* 24-31 */ +_S|_SP,_P,_P,_P,_P,_P,_P,_P,			/* 32-39 */ +_P,_P,_P,_P,_P,_P,_P,_P,			/* 40-47 */ +_D,_D,_D,_D,_D,_D,_D,_D,			/* 48-55 */ +_D,_D,_P,_P,_P,_P,_P,_P,			/* 56-63 */ +_P,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U,	/* 64-71 */ +_U,_U,_U,_U,_U,_U,_U,_U,			/* 72-79 */ +_U,_U,_U,_U,_U,_U,_U,_U,			/* 80-87 */ +_U,_U,_U,_P,_P,_P,_P,_P,			/* 88-95 */ +_P,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L,	/* 96-103 */ +_L,_L,_L,_L,_L,_L,_L,_L,			/* 104-111 */ +_L,_L,_L,_L,_L,_L,_L,_L,			/* 112-119 */ +_L,_L,_L,_P,_P,_P,_P,_C,			/* 120-127 */ +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,		/* 128-143 */ +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,		/* 144-159 */ +_S|_SP,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,   /* 160-175 */ +_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,       /* 176-191 */ +_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,       /* 192-207 */ +_U,_U,_U,_U,_U,_U,_U,_P,_U,_U,_U,_U,_U,_U,_U,_L,       /* 208-223 */ +_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,       /* 224-239 */ +_L,_L,_L,_L,_L,_L,_L,_P,_L,_L,_L,_L,_L,_L,_L,_L};      /* 240-255 */ |