MCPcopy Create free account
hub / github.com/andreasfertig/programming-with-cpp20 / Send

Function Send

10.07-lengthAndValue0/main.cpp:14–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12void Read(char* data, size_t size);
13
14bool Send(const char* data, size_t size)
15{
16 if(!data) { return false; }
17
18 return write(data, size);
19}
20
21void Read(char* data, size_t size)
22{

Callers 1

mainFunction · 0.70

Calls 1

writeFunction · 0.70

Tested by

no test coverage detected