MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / cli_strncmp

Function cli_strncmp

modules/dasSQLITE/sqlite/shell.c:286–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284 return strcmp(a,b);
285}
286static 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 */
293static sqlite3_int64 timeOfDay(void){

Callers 8

shellAddSchemaNameFunction · 0.85
displayLinuxIoStatsFunction · 0.85
expertDotCommandFunction · 0.85
dump_callbackFunction · 0.85
readHexDbFunction · 0.85
do_meta_commandFunction · 0.85
runOneSqlLineFunction · 0.85
wmainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected