Home
last modified time | relevance | path

Searched refs:zConst (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/tool/
H A Dshowdb.c603 char zConst[32]; in decodeCell() local
605 zConst[0] = 'x'; in decodeCell()
606 zConst[1] = '\''; in decodeCell()
608 sprintf(zConst+ii, "%02x", pData[jj]); in decodeCell()
611 zConst[0] = '\''; in decodeCell()
613 zConst[ii] = ISPRINT(pData[jj]) ? pData[jj] : '.'; in decodeCell()
615 zConst[ii] = 0; in decodeCell()
618 memcpy(zConst+ii, "...'", 5); in decodeCell()
620 memcpy(zConst+ii, "'", 2); in decodeCell()
622 printf("%s\n", zConst); in decodeCell()