** Helper functions for writing mapfiles. */
| 466 | ** Helper functions for writing mapfiles. |
| 467 | */ |
| 468 | static void writeLineFeed(FILE *stream) { |
| 469 | fprintf(stream, "\n"); |
| 470 | } |
| 471 | |
| 472 | static void writeIndent(FILE *stream, int indent) { |
| 473 | const char *str=" "; /* change this string to define the indent */ |
no outgoing calls
no test coverage detected