HomeSort by relevance Sort by last modified time
    Searched defs:zAppend (Results 1 - 2 of 2) sorted by null

  /external/sqlite/dist/orig/
shell.c 731 ** from malloc(), or a NULL pointer. The string pointed to by zAppend is
736 ** quote character for zAppend.
738 static void appendText(ShellText *p, char const *zAppend, char quote){
741 int nAppend = strlen30(zAppend);
747 if( zAppend[i]==quote ) len++;
764 *zCsr++ = zAppend[i];
765 if( zAppend[i]==quote ) *zCsr++ = quote;
771 memcpy(p->z+p->n, zAppend, nAppend);
    [all...]
  /external/sqlite/dist/
shell.c 737 ** from malloc(), or a NULL pointer. The string pointed to by zAppend is
742 ** quote character for zAppend.
744 static void appendText(ShellText *p, char const *zAppend, char quote){
747 int nAppend = strlen30(zAppend);
753 if( zAppend[i]==quote ) len++;
770 *zCsr++ = zAppend[i];
771 if( zAppend[i]==quote ) *zCsr++ = quote;
777 memcpy(p->z+p->n, zAppend, nAppend);
    [all...]

Completed in 193 milliseconds