            if(*(js->string + counter) >= 192 /*  */ &&
               *(js->string + counter) <= 214 /*  */)
                *(js->string + counter) += 32;
            /* Why they had to put  and the corresponding  smack dab in
               the middle of the international letters is a mystery to me */
            if(*(js->string + counter) >= 216 /*  */ &&
               *(js->string + counter) <= 222 /*  */)
                /*  to  */
                for(counter=192;counter<=214;counter++) {
	            *(js->string + place) = counter;
		    place++;
		    }
                /*  to  */
	        for(counter=216;counter<=246;counter++) {
	            *(js->string + place) = counter;
	            place++;
	            }
                /*  to  */
	        for(counter=248;counter<255;counter++) {
	            *(js->string + place) = counter;
	            place++;
	            }
                /*  ( We do it this way because counter is always <= 255 ) */

csv1["౲"] = "׳"

