write an arbitrary amount of bytes
| 174 | }; |
| 175 | /// write an arbitrary amount of bytes |
| 176 | void write(void* address, uint32_t length, uint8_t* buffer) |
| 177 | { |
| 178 | memcpy((void*)address, buffer, length); |
| 179 | }; |
| 180 | |
| 181 | /// read an STL string |
| 182 | const std::string readSTLString(void* offset) |
no outgoing calls
no test coverage detected