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

Side by Side Diff: third_party/libxslt/src/libexslt/dynamic.c

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 unified diff | Download patch
« no previous file with comments | « third_party/libxslt/src/libexslt/date.c ('k') | third_party/libxslt/src/libexslt/exslt.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * dynamic.c: Implementation of the EXSLT -- Dynamic module 2 * dynamic.c: Implementation of the EXSLT -- Dynamic module
3 * 3 *
4 * References: 4 * References:
5 * http://www.exslt.org/dyn/dyn.html 5 * http://www.exslt.org/dyn/dyn.html
6 * 6 *
7 * See Copyright for the status of this software. 7 * See Copyright for the status of this software.
8 * 8 *
9 * Authors: 9 * Authors:
10 * Mark Vakoc <mark_vakoc@jdedwards.com> 10 * Mark Vakoc <mark_vakoc@jdedwards.com>
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 void 292 void
293 exsltDynRegister (void) { 293 exsltDynRegister (void) {
294 xsltRegisterExtModuleFunction ((const xmlChar *) "evaluate", 294 xsltRegisterExtModuleFunction ((const xmlChar *) "evaluate",
295 EXSLT_DYNAMIC_NAMESPACE, 295 EXSLT_DYNAMIC_NAMESPACE,
296 exsltDynEvaluateFunction); 296 exsltDynEvaluateFunction);
297 xsltRegisterExtModuleFunction ((const xmlChar *) "map", 297 xsltRegisterExtModuleFunction ((const xmlChar *) "map",
298 EXSLT_DYNAMIC_NAMESPACE, 298 EXSLT_DYNAMIC_NAMESPACE,
299 exsltDynMapFunction); 299 exsltDynMapFunction);
300 300
301 } 301 }
OLDNEW
« no previous file with comments | « third_party/libxslt/src/libexslt/date.c ('k') | third_party/libxslt/src/libexslt/exslt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698