Home | Info | Community | Development | myReactOS | Contact Us
xsltNumber: : a XSLT process context : the node in the source tree. : the xslt number node : precomputed information
Process the xslt number node on the source node
Definition at line 4474 of file transform.c.
Referenced by xsltNewStylePreComp(), and xsltRegisterAllElement().
{ #ifdef XSLT_REFACTORED xsltStyleItemNumberPtr comp = (xsltStyleItemNumberPtr) castedComp; #else xsltStylePreCompPtr comp = castedComp; #endif if (comp == NULL) { xsltTransformError(ctxt, NULL, inst, "xsl:number : compilation failed\n"); return; } if ((ctxt == NULL) || (node == NULL) || (inst == NULL) || (comp == NULL)) return; comp->numdata.doc = inst->doc; comp->numdata.node = inst; xsltNumberFormat(ctxt, &comp->numdata, node); }