GnuCash c935c2f+
Loading...
Searching...
No Matches
fin_spl_protos.h
1/***************************************************************************
2 * -------------------
3 * create : Tue Jul 11 20:21:18 2000
4 * copyright: (C) 2000 by Terry D. Boldt
5 * email : tboldt@attglobal.net
6 * -------------------
7 ***************************************************************************/
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16/***************************************************************************
17 * Global Function Prototypes
18 * Tue Jul 11 20:21:18 2000
19 *
20 ***************************************************************************/
21
22#ifndef FIN_SPL_PROTOS_H
23#define FIN_SPL_PROTOS_H
24
25/*==================================================*/
26/* expression_parser.c */
27/* Line Number: 344 */
28parser_env_ptr init_parser(
29 var_store_ptr predefined_vars,
30 gchar *radix_point,
31 gchar *group_char,
32 void *trans_numeric(const char *digit_str,
33 gchar *radix_point,
34 gchar *group_char,
35 char **rstr),
36 void *numeric_ops(char op_sym,
37 void *left_value,
38 void *right_value),
39 void *negate_numeric(void *value),
40 void free_numeric(void *numeric_value),
41 void *func_op( const char *fname,
42 int argc, void **argv ) );
43
44#endif