| 39 | } |
| 40 | |
| 41 | void writeComment(FileStream& file, const char* comment) |
| 42 | { |
| 43 | snprintf(s_lineBuffer, LINEBUF_LEN, ";%s\r\n", comment); |
| 44 | file.writeBuffer(s_lineBuffer, (u32)strlen(s_lineBuffer)); |
| 45 | } |
| 46 | |
| 47 | void writeKeyValue_String(FileStream& file, const char* key, const char* value) |
| 48 | { |
nothing calls this directly
no test coverage detected