/usr/include/libxslt
NameSizeModeActions
attributes.h9360644editdlrm
documents.h27370644editdlrm
extensions.h69030644editdlrm
extra.h18400644editdlrm
functions.h20150644editdlrm
imports.h18550644editdlrm
keys.h11620644editdlrm
namespaces.h16730644editdlrm
numbersInternals.h19260644editdlrm
pattern.h19980644editdlrm
preproc.h8970644editdlrm
security.h26770644editdlrm
templates.h22800644editdlrm
transform.h63280644editdlrm
variables.h26580644editdlrm
xslt.h18370644editdlrm
xsltconfig.h34000644editdlrm
xsltexports.h34260644editdlrm
xsltInternals.h569060644editdlrm
xsltlocale.h12050644editdlrm
xsltutils.h83040644editdlrm
Edit: /usr/include/libxslt/attributes.h (936B)
/* * Summary: interface for the XSLT attribute handling * Description: this module handles the specificities of attribute * and attribute groups processing. * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __XML_XSLT_ATTRIBUTES_H__ #define __XML_XSLT_ATTRIBUTES_H__ #include #include "xsltexports.h" #ifdef __cplusplus extern "C" { #endif XSLTPUBFUN void XSLTCALL xsltParseStylesheetAttributeSet (xsltStylesheetPtr style, xmlNodePtr cur); XSLTPUBFUN void XSLTCALL xsltFreeAttributeSetsHashes (xsltStylesheetPtr style); XSLTPUBFUN void XSLTCALL xsltApplyAttributeSet (xsltTransformContextPtr ctxt, xmlNodePtr node, xmlNodePtr inst, const xmlChar *attributes); XSLTPUBFUN void XSLTCALL xsltResolveStylesheetAttributeSet(xsltStylesheetPtr style); #ifdef __cplusplus } #endif #endif /* __XML_XSLT_ATTRIBUTES_H__ */