Write functions
| 33 | |
| 34 | // Write functions |
| 35 | void writeHeader(FileStream& file, const char* section) |
| 36 | { |
| 37 | snprintf(s_lineBuffer, LINEBUF_LEN, "[%s]\r\n", section); |
| 38 | file.writeBuffer(s_lineBuffer, (u32)strlen(s_lineBuffer)); |
| 39 | } |
| 40 | |
| 41 | void writeComment(FileStream& file, const char* comment) |
| 42 | { |
no test coverage detected