* xmlNodeIsText: * @node: the node * * Is this node a Text node ? * Returns 1 yes, 0 no */
| 7034 | * Returns 1 yes, 0 no |
| 7035 | */ |
| 7036 | int |
| 7037 | xmlNodeIsText(const xmlNode *node) { |
| 7038 | if (node == NULL) return(0); |
| 7039 | |
| 7040 | if (node->type == XML_TEXT_NODE) return(1); |
| 7041 | return(0); |
| 7042 | } |
| 7043 | |
| 7044 | /** |
| 7045 | * xmlIsBlankNode: |