MCPcopy Create free account
hub / github.com/anse1/sqlsmith / callback

Function callback

sqlite.cc:31–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31extern "C" int callback(void *arg, int argc, char **argv, char **azColName)
32{
33 (void)arg;
34
35 int i;
36 for(i=0; i<argc; i++){
37 printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
38 }
39 printf("\n");
40 return 0;
41}
42
43extern "C" int table_callback(void *arg, int argc, char **argv, char **azColName)
44{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected