File: fo-expr-func-private.h

package info (click to toggle)
xmlroff 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 36,456 kB
  • ctags: 25,964
  • sloc: ansic: 178,200; xml: 109,155; sh: 8,973; makefile: 1,331; perl: 30
file content (71 lines) | stat: -rw-r--r-- 2,783 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Fo
 * fo-expr-func.h: XSL expression language functions
 *
 * Copyright (C) 1998-2002 Daniel Veillard.
 * Copyright (C) 2001-2002 Sun Microsystems.
 * All Rights Reserved.
 *
 * Based on an XSL expression language evaluator that was based on the
 * 'XML Path Language implementation' in 'xpath.c' from libxml2 by
 * Daniel Veillard.
 * Copyright (C) 2007 Menteith Consulting Ltd
 *
 * See COPYING for the status of this software.
 */

#ifndef __FO_EXPR_FUNC_PRIVATE_H__
#define __FO_EXPR_FUNC_PRIVATE_H__

#include <libfo/expr/fo-expr-eval.h>
#include <libfo/datatype/fo-datatype.h>

G_BEGIN_DECLS

FoDatatype* fo_expr_func_abs         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_add         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_body_start  (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_ceiling     (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_div         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_floor       (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_from_nearest_specified_value (FoExprContext *context,
						       gint           nargs);
FoDatatype* fo_expr_func_from_parent (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_from_table_column (FoExprContext *context,
					    gint           nargs);
FoDatatype* fo_expr_func_inherited_property_value (FoExprContext *context,
						   gint           nargs);
FoDatatype* fo_expr_func_label_end   (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_max         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_min         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_mod         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_mul         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_pcw         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_pcw_prop    (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_pcw_prop_fixed (FoExprContext *context,
					 gint           nargs);
FoDatatype* fo_expr_func_rgb         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_round       (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_sub         (FoExprContext *context,
				      gint           nargs);
FoDatatype* fo_expr_func_url         (FoExprContext *context,
				      gint           nargs);

G_END_DECLS

#endif /* !__FO_EXPR_FUNC_PRIVATE_H__ */