MCPcopy Create free account
hub / github.com/GJDuck/e9patch / sendAsmStrData

Function sendAsmStrData

src/e9tool/e9metadata.cpp:1387–1396  ·  view source on GitHub ↗

* String asm string data. */

Source from the content-addressed store, hash-verified

1385 * String asm string data.
1386 */
1387static void sendAsmStrData(FILE *out, const InstrInfo *I,
1388 bool newline = false)
1389{
1390 fputs("{\"string\":\"", out);
1391 for (unsigned i = 0; I->string.instr[i] != '\0'; i++)
1392 sendStringCharData(out, I->string.instr[i]);
1393 if (newline)
1394 sendStringCharData(out, '\n');
1395 fputs("\"}", out);
1396}
1397
1398/*
1399 * Send integer data.

Callers 2

sendArgumentDataMetadataFunction · 0.85
sendPrintMetadataMethod · 0.85

Calls 2

fputsFunction · 0.85
sendStringCharDataFunction · 0.85

Tested by

no test coverage detected