MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / callback

Function callback

test/sqlite/test.c:12–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10#include <sqlite3.h>
11
12static int callback(void *NotUsed, int argc, char **argv, char **azColName){
13 int i;
14 for(i=0; i<argc; i++){
15 printf("%s = %s\n", azColName[i], argv[i] ? argv[i] : "NULL");
16 }
17 printf("\n");
18 return 0;
19}
20
21int main(){
22 sqlite3 *db;

Callers 5

for_all_filesFunction · 0.50
GetDeviceFunction · 0.50
mainFunction · 0.50
mainFunction · 0.50

Calls 1

printfFunction · 0.85

Tested by

no test coverage detected