# | Line 94 | Line 94 | ezxml_t ezxml_idx(ezxml_t xml, int idx); | |
---|---|---|
94 | #define ezxml_name(xml) ((xml) ? xml->name : NULL) | |
95 | ||
96 | /* returns the given tag's character content or empty string if none */ | |
97 | < | #define ezxml_txt(xml) ((xml) ? xml->txt : "") |
97 | > | char *ezxml_txt(ezxml_t xml); |
98 | ||
99 | /* returns the value of the requested tag attribute, or NULL if not found */ | |
100 | const char *ezxml_attr(ezxml_t xml, const char *attr); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |