| 284 | return strcmp(a,b); |
| 285 | } |
| 286 | static int cli_strncmp(const char *a, const char *b, size_t n){ |
| 287 | if( a==0 ) a = ""; |
| 288 | if( b==0 ) b = ""; |
| 289 | return strncmp(a,b,n); |
| 290 | } |
| 291 | |
| 292 | /* Return the current wall-clock time */ |
| 293 | static sqlite3_int64 timeOfDay(void){ |
no outgoing calls
no test coverage detected