| 53 | #define FLAGS_FINAL(flags) (((flags)&(SVG_IMPORT_SUCCESS_FLAG|SVG_IMPORT_INCOMPLETE_FLAG|SVG_IMPORT_UNSUPPORTED_FEATURE_FLAG)) == (SVG_IMPORT_SUCCESS_FLAG|SVG_IMPORT_INCOMPLETE_FLAG|SVG_IMPORT_UNSUPPORTED_FEATURE_FLAG)) |
| 54 | |
| 55 | static void skipExtraChars(const char *&pathDef) { |
| 56 | while (*pathDef == ',' || *pathDef == ' ' || *pathDef == '\t' || *pathDef == '\r' || *pathDef == '\n') |
| 57 | ++pathDef; |
| 58 | } |
| 59 | |
| 60 | static bool readNodeType(char &output, const char *&pathDef) { |
| 61 | skipExtraChars(pathDef); |
no outgoing calls
no test coverage detected