| 17256 | sqlite3_free(zToFree); |
| 17257 | } |
| 17258 | static void printSchemaLineN(FILE *out, char *z, int n, const char *zTail){ |
| 17259 | char c = z[n]; |
| 17260 | z[n] = 0; |
| 17261 | printSchemaLine(out, z, zTail); |
| 17262 | z[n] = c; |
| 17263 | } |
| 17264 | |
| 17265 | /* |
| 17266 | ** Return true if string z[] has nothing but whitespace and comments to the |
no test coverage detected