Lines Matching defs:zUtf
563 ** Output string zUtf to stream pOut as w characters. If w is negative,
568 static void utf8_width_print(FILE *pOut, int w, const char *zUtf){
572 if( zUtf==0 ) zUtf = "";
573 for(i=n=0; zUtf[i]; i++){
574 if( (zUtf[i]&0xc0)!=0x80 ){
577 do{ i++; }while( (zUtf[i]&0xc0)==0x80 );
583 utf8_printf(pOut, "%.*s", i, zUtf);
585 utf8_printf(pOut, "%*s%s", aw-n, "", zUtf);
587 utf8_printf(pOut, "%s%*s", zUtf, aw-n, "");