** Print a usage message for the .ar command to stderr and return SQLITE_ERROR. */
| 21946 | ** Print a usage message for the .ar command to stderr and return SQLITE_ERROR. |
| 21947 | */ |
| 21948 | static int arUsage(FILE *f){ |
| 21949 | showHelp(f,"archive"); |
| 21950 | return SQLITE_ERROR; |
| 21951 | } |
| 21952 | |
| 21953 | /* |
| 21954 | ** Print an error message for the .ar command to stderr and return |
no test coverage detected