Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/libxslt
File: functions.h
/*
[0] Fix | Delete
* Summary: interface for the XSLT functions not from XPath
[1] Fix | Delete
* Description: a set of extra functions coming from XSLT but not in XPath
[2] Fix | Delete
*
[3] Fix | Delete
* Copy: See Copyright for the status of this software.
[4] Fix | Delete
*
[5] Fix | Delete
* Author: Daniel Veillard and Bjorn Reese <breese@users.sourceforge.net>
[6] Fix | Delete
*/
[7] Fix | Delete
[8] Fix | Delete
#ifndef __XML_XSLT_FUNCTIONS_H__
[9] Fix | Delete
#define __XML_XSLT_FUNCTIONS_H__
[10] Fix | Delete
[11] Fix | Delete
#include <libxml/xpath.h>
[12] Fix | Delete
#include <libxml/xpathInternals.h>
[13] Fix | Delete
#include "xsltexports.h"
[14] Fix | Delete
#include "xsltInternals.h"
[15] Fix | Delete
[16] Fix | Delete
#ifdef __cplusplus
[17] Fix | Delete
extern "C" {
[18] Fix | Delete
#endif
[19] Fix | Delete
[20] Fix | Delete
/**
[21] Fix | Delete
* XSLT_REGISTER_FUNCTION_LOOKUP:
[22] Fix | Delete
*
[23] Fix | Delete
* Registering macro, not general purpose at all but used in different modules.
[24] Fix | Delete
*/
[25] Fix | Delete
#define XSLT_REGISTER_FUNCTION_LOOKUP(ctxt) \
[26] Fix | Delete
xmlXPathRegisterFuncLookup((ctxt)->xpathCtxt, \
[27] Fix | Delete
(xmlXPathFuncLookupFunc) xsltXPathFunctionLookup, \
[28] Fix | Delete
(void *)(ctxt->xpathCtxt));
[29] Fix | Delete
[30] Fix | Delete
XSLTPUBFUN xmlXPathFunction XSLTCALL
[31] Fix | Delete
xsltXPathFunctionLookup (xmlXPathContextPtr ctxt,
[32] Fix | Delete
const xmlChar *name,
[33] Fix | Delete
const xmlChar *ns_uri);
[34] Fix | Delete
[35] Fix | Delete
/*
[36] Fix | Delete
* Interfaces for the functions implementations.
[37] Fix | Delete
*/
[38] Fix | Delete
[39] Fix | Delete
XSLTPUBFUN void XSLTCALL
[40] Fix | Delete
xsltDocumentFunction (xmlXPathParserContextPtr ctxt,
[41] Fix | Delete
int nargs);
[42] Fix | Delete
XSLTPUBFUN void XSLTCALL
[43] Fix | Delete
xsltKeyFunction (xmlXPathParserContextPtr ctxt,
[44] Fix | Delete
int nargs);
[45] Fix | Delete
XSLTPUBFUN void XSLTCALL
[46] Fix | Delete
xsltUnparsedEntityURIFunction (xmlXPathParserContextPtr ctxt,
[47] Fix | Delete
int nargs);
[48] Fix | Delete
XSLTPUBFUN void XSLTCALL
[49] Fix | Delete
xsltFormatNumberFunction (xmlXPathParserContextPtr ctxt,
[50] Fix | Delete
int nargs);
[51] Fix | Delete
XSLTPUBFUN void XSLTCALL
[52] Fix | Delete
xsltGenerateIdFunction (xmlXPathParserContextPtr ctxt,
[53] Fix | Delete
int nargs);
[54] Fix | Delete
XSLTPUBFUN void XSLTCALL
[55] Fix | Delete
xsltSystemPropertyFunction (xmlXPathParserContextPtr ctxt,
[56] Fix | Delete
int nargs);
[57] Fix | Delete
XSLTPUBFUN void XSLTCALL
[58] Fix | Delete
xsltElementAvailableFunction (xmlXPathParserContextPtr ctxt,
[59] Fix | Delete
int nargs);
[60] Fix | Delete
XSLTPUBFUN void XSLTCALL
[61] Fix | Delete
xsltFunctionAvailableFunction (xmlXPathParserContextPtr ctxt,
[62] Fix | Delete
int nargs);
[63] Fix | Delete
[64] Fix | Delete
/*
[65] Fix | Delete
* And the registration
[66] Fix | Delete
*/
[67] Fix | Delete
[68] Fix | Delete
XSLTPUBFUN void XSLTCALL
[69] Fix | Delete
xsltRegisterAllFunctions (xmlXPathContextPtr ctxt);
[70] Fix | Delete
[71] Fix | Delete
#ifdef __cplusplus
[72] Fix | Delete
}
[73] Fix | Delete
#endif
[74] Fix | Delete
[75] Fix | Delete
#endif /* __XML_XSLT_FUNCTIONS_H__ */
[76] Fix | Delete
[77] Fix | Delete
[78] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function