/********************************************************************************/
/*							    Tiny Text Editor								*/
/*																			    */
/*			for  English and German and French  version					*/
/*																			*/
/*								Moji data Table								*/
/*																			*/
/*			Programmed by Y.Nishida	  [ Nov.15, 1991 ]	 version 1.00			*/
/*			Programmed by N.Okajima	  [ Jan.17, 1992 ]	 version 1.50			*/
/********************************************************************************/
#define MOJI_CNT	111
#define DOT_MAX		126

unchar dot_tbl[MOJI_CNT]={
/*	 A   B	 C   D	 E   F	 G   H	 I   J	 K   L	 M   N	 O   P	      */
	 8,  8,	 8,  8,	 7,  7,	 8,  8,	 5,  8,	 8,  7,	 8,  8,	 8,  8,

/*	 Q   R	 S   T	 U   V	 W   X	 Y   Z	 a   b	 c   d	 e   f	      */
	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 7,  7,

/*	 g   h	 i   j	 k   l	 m   n	 o   p	 q   r	 s   t	 u   v	      */
	 8,  8,	 4,  7,	 8,  4,	 8,  8,	 8,  8,	 8,  7,	 8,  8,	 8,  8,

/*	 w   x	 y   z	 0   1	 2   3	 4   5	 6   7	 8   9	 !   ?	      */
	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,

/*   "   #   $   %   ^   &   *   (   )   _   +   ,   .   -   /   <        */
	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,

/*	 >   =	 [   ]	 \   '   ;   :   |   {   }   `   ~   sp               */
	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  8,	 8,  4,

/*	 à   â   ç   è   é   ê   î   ô   ù   û					*/
	 8,  8,  8,  7,  7,  7,  8,  8,  8,  8,

/*	 ä   ö   ü   ß   Ä   Ö   Ü						*/
	 8,  8,  8,  8,  8,  8,  8,
};

unchar moji_tbl[MOJI_CNT]={
	 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',

	 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',

	 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',

	 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '!', '?',

     '\"', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', ',', '.', '-', '/', '<',

	 '>',  '=', '[', ']', '\\', '\'', ';', ':', '|', '{', '}', '`', '~', ' ',

	 'à',  'â', 'ç', 'è', 'é', 'ê', 'î', 'ô', 'ù', 'û',

	 'ä',  'ö', 'ü', 'ß', 'Ä', 'Ö', 'Ü',
};

#ifdef CCCC
/*** German ***/
	0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,
	0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x61,0x62,0x63,0x64,0x65,0x66,
	0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,
	0x77,0x78,0x79,0x7a,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x21,0x3f,
	0x2d,0x2e,0x2c,0x5f,0x3e,0x28,0x29,0x23,0x24,0x25,0x26,0x2a,0x22,0x2b,0x2b,0x2f,
	0x2f,0x27,0x3d,0x5e,0x7e,0xa7,0xa2,0xa3,0xa5,0x20,0xf6,0xf8,0xe3,0xd7,0xb1,0xfc,
	0xdf,0x3a,0xb2,0xb2,0xb3,0xb3,0xe8,0xe9,0xea,0xe0,0xf9,0xe7,0xc4,0xd6,0xdc,0xe4,
	0xa4,
#endif

#ifdef CCC
/*** French ***/
	0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,
	0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x61,0x62,0x63,0x64,0x65,0x66,
	0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0x73,0x74,0x75,0x76,
	0x77,0x78,0x79,0x7a,0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x21,0x3f,
	0x2d,0x2e,0x2c,0x5f,0x3e,0x28,0x29,0x23,0x24,0x25,0x26,0x2a,0x22,0x2b,0x2b,0x2f,
	0x2f,0x27,0x3d,0x5e,0x7e,0xa7,0xa2,0xa3,0xa5,0x20,0xf6,0xf8,0xe3,0xd7,0xb1,0xfc,
	0xf4,0x3a,0xb2,0xb2,0xb3,0xb3,0xe8,0xe9,0xea,0xe0,0xf9,0xe7,0xe2,0xfb,0xee,0xe4,
	0xa4,
#endif
