| 481 | } |
| 482 | |
| 483 | static void writeBlockEnd(FILE *stream, int indent, const char *name) { |
| 484 | writeIndent(stream, indent); |
| 485 | fprintf(stream, "END # %s\n", name); |
| 486 | } |
| 487 | |
| 488 | static void writeKeyword(FILE *stream, int indent, const char *name, int value, int size, ...) { |
| 489 | va_list argp; |
no test coverage detected