| 11970 | } |
| 11971 | } |
| 11972 | static void printSchemaLineN(FILE *out, char *z, int n, const char *zTail){ |
| 11973 | char c = z[n]; |
| 11974 | z[n] = 0; |
| 11975 | printSchemaLine(out, z, zTail); |
| 11976 | z[n] = c; |
| 11977 | } |
| 11978 | |
| 11979 | /* |
| 11980 | ** Return true if string z[] has nothing but whitespace and comments to the |
no test coverage detected