Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: third_party/libxslt/libxslt/functions.h

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libxslt/libxslt/extra.c ('k') | third_party/libxslt/libxslt/functions.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libxslt/libxslt/functions.h
diff --git a/third_party/libxslt/libxslt/functions.h b/third_party/libxslt/libxslt/functions.h
deleted file mode 100644
index e0e0bf906189d4831543a222f0b9fa6a5ae120a0..0000000000000000000000000000000000000000
--- a/third_party/libxslt/libxslt/functions.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Summary: interface for the XSLT functions not from XPath
- * Description: a set of extra functions coming from XSLT but not in XPath
- *
- * Copy: See Copyright for the status of this software.
- *
- * Author: Daniel Veillard and Bjorn Reese <breese@users.sourceforge.net>
- */
-
-#ifndef __XML_XSLT_FUNCTIONS_H__
-#define __XML_XSLT_FUNCTIONS_H__
-
-#include <libxml/xpath.h>
-#include <libxml/xpathInternals.h>
-#include "xsltexports.h"
-#include "xsltInternals.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * XSLT_REGISTER_FUNCTION_LOOKUP:
- *
- * Registering macro, not general purpose at all but used in different modules.
- */
-#define XSLT_REGISTER_FUNCTION_LOOKUP(ctxt) \
- xmlXPathRegisterFuncLookup((ctxt)->xpathCtxt, \
- (xmlXPathFuncLookupFunc) xsltXPathFunctionLookup, \
- (void *)(ctxt->xpathCtxt));
-
-XSLTPUBFUN xmlXPathFunction XSLTCALL
- xsltXPathFunctionLookup (xmlXPathContextPtr ctxt,
- const xmlChar *name,
- const xmlChar *ns_uri);
-
-/*
- * Interfaces for the functions implementations.
- */
-
-XSLTPUBFUN void XSLTCALL
- xsltDocumentFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-XSLTPUBFUN void XSLTCALL
- xsltKeyFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-XSLTPUBFUN void XSLTCALL
- xsltUnparsedEntityURIFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-XSLTPUBFUN void XSLTCALL
- xsltFormatNumberFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-XSLTPUBFUN void XSLTCALL
- xsltGenerateIdFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-XSLTPUBFUN void XSLTCALL
- xsltSystemPropertyFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-XSLTPUBFUN void XSLTCALL
- xsltElementAvailableFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-XSLTPUBFUN void XSLTCALL
- xsltFunctionAvailableFunction (xmlXPathParserContextPtr ctxt,
- int nargs);
-
-/*
- * And the registration
- */
-
-XSLTPUBFUN void XSLTCALL
- xsltRegisterAllFunctions (xmlXPathContextPtr ctxt);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __XML_XSLT_FUNCTIONS_H__ */
-
« no previous file with comments | « third_party/libxslt/libxslt/extra.c ('k') | third_party/libxslt/libxslt/functions.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698