Subversion Repositories Kolibri OS

Rev

Rev 6376 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6376 Rev 6377
Line 219... Line 219...
219
 
219
 
220
// function to look for the conversion od special characters
220
// function to look for the conversion od special characters
221
// if not found--> return 0
221
// if not found--> return 0
222
char get_symbol() {
222
char get_symbol() {
223
	int i;
223
	int i;
224
	debugln(#str);
224
	//debugln(#str);
225
	for (i=0; unicode_tags[i]!=0; i+=2) {}
225
	for (i=0; unicode_tags[i]!=0; i+=2) {
226
		if (strcmp(#str, unicode_tags[i]) == 0) {
226
		if (strcmp(#str, unicode_tags[i]) == 0) {
227
			//debugval("i: ", i);
227
			//debugval("i: ", i);
228
			return unicode_tags[i+1]);
228
			return unicode_tags[i+1]);
229
		}
229
		}