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

Function sendBytesData

src/e9tool/e9metadata.cpp:1412–1416  ·  view source on GitHub ↗

* Send bytes data. */

Source from the content-addressed store, hash-verified

1410 * Send bytes data.
1411 */
1412static void sendBytesData(FILE *out, const uint8_t *bytes, size_t len)
1413{
1414 for (size_t i = 0; i < len; i++)
1415 fprintf(out, "%u%s", bytes[i], (i+1 < len? ",": ""));
1416}
1417
1418/*
1419 * Send instructions to load an argument into a register.

Callers 1

sendArgumentDataMetadataFunction · 0.85

Calls 1

fprintfFunction · 0.50

Tested by

no test coverage detected