Home | Info | Community | Development | myReactOS | Contact Us
xsltNeedElemSpaceHandling: : an XSLT transformation context
Checks whether that stylesheet requires white-space stripping
Returns 1 if space should be stripped, 0 if not
Definition at line 313 of file imports.c.
Referenced by xsltApplyStylesheetInternal(), and xsltLoadDocument().
{ xsltStylesheetPtr style; if (ctxt == NULL) return(0); style = ctxt->style; while (style != NULL) { if (style->stripSpaces != NULL) return(1); style = xsltNextImport(style); } return(0); }