** Print a usage message for the .ar command to stderr and return SQLITE_ERROR. */
| 16192 | ** Print a usage message for the .ar command to stderr and return SQLITE_ERROR. |
| 16193 | */ |
| 16194 | static int arUsage(FILE *f){ |
| 16195 | showHelp(f,"archive"); |
| 16196 | return SQLITE_ERROR; |
| 16197 | } |
| 16198 | |
| 16199 | /* |
| 16200 | ** Print an error message for the .ar command to stderr and return |
no test coverage detected