Home
last modified time | relevance | path

Searched refs:zHistory (Results 1 – 1 of 1) sorted by relevance

/freebsd-13.1/contrib/sqlite3/
H A Dshell.c22800 char *zHistory; local
22813 zHistory = getenv("SQLITE_HISTORY");
22814 if( zHistory ){
22815 zHistory = strdup(zHistory);
22818 if( (zHistory = malloc(nHistory))!=0 ){
22819 sqlite3_snprintf(nHistory, zHistory,"%s/.sqlite_history", zHome);
22822 if( zHistory ){ shell_read_history(zHistory); }
22830 if( zHistory ){
22832 shell_write_history(zHistory);
22833 free(zHistory);