| 611 | } |
| 612 | |
| 613 | static void writeAttributeBinding(FILE *stream, int indent, const char *name, attributeBindingObj *binding) { |
| 614 | if(!binding || !binding->item) return; |
| 615 | writeIndent(stream, ++indent); |
| 616 | fprintf(stream, "%s [%s]\n", name, binding->item); |
| 617 | } |
| 618 | |
| 619 | static void writeColor(FILE *stream, int indent, const char *name, colorObj *defaultColor, colorObj *color) { |
| 620 | if (!defaultColor && !MS_VALID_COLOR(*color)) return; |
no test coverage detected