Lines Matching defs:text
857 void UC_log_message(char *text){
860 fprintf(fp,"%s",text);
866 void msdepua (uint32_t *text)
868 while(*text){
869 if(*text >= 0xF020 && *text <= 0xF0FF){ *text -= 0xF000; }
870 text++;
875 void msrepua (uint16_t *text)
877 while(*text){
878 if(*text >= 0x20 && *text <= 0xFF){ *text += 0xF000; }
879 text++;
919 int NonToUnicode(uint32_t *text, char *font){
929 while(*text){
930 if(*text > 0xFF){ *text = 0xFFFD; } // out of range
931 else { *text = convert_from[*text]; }
932 text++;
947 void UnicodeToNon(uint16_t *text, int *ecount, int *edest){
951 if(text && (target=to_font[*text])){ //There is actually something here to convert
952 while(*text && target==to_font[*text]){
953 *text=from_unicode[*text] + (hold_pua ? 0xF000 : 0 );
954 text++;
970 int SingleUnicodeToNon(uint16_t text){
971 if(to_font){return(to_font[text]); }