|
GnuCash 2.4.99
|
00001 /*************************************************************************** 00002 * ------------------- 00003 * create : Tue Jul 11 20:21:18 2000 00004 * copyright: (C) 2000 by Terry D. Boldt 00005 * email : tboldt@attglobal.net 00006 * ------------------- 00007 ***************************************************************************/ 00008 /*************************************************************************** 00009 * * 00010 * This program is free software; you can redistribute it and/or modify * 00011 * it under the terms of the GNU General Public License as published by * 00012 * the Free Software Foundation; either version 2 of the License, or * 00013 * (at your option) any later version. * 00014 * * 00015 ***************************************************************************/ 00016 /*************************************************************************** 00017 * Global Function Prototypes 00018 * Tue Jul 11 20:21:18 2000 00019 * 00020 ***************************************************************************/ 00021 00022 #ifndef FIN_SPL_PROTOS_H 00023 #define FIN_SPL_PROTOS_H 00024 00025 /*==================================================*/ 00026 /* expression_parser.c */ 00027 /* Line Number: 344 */ 00028 parser_env_ptr init_parser( 00029 var_store_ptr predefined_vars, 00030 gchar *radix_point, 00031 gchar *group_char, 00032 void *trans_numeric(const char *digit_str, 00033 gchar *radix_point, 00034 gchar *group_char, 00035 char **rstr), 00036 void *numeric_ops(char op_sym, 00037 void *left_value, 00038 void *right_value), 00039 void *negate_numeric(void *value), 00040 void free_numeric(void *numeric_value), 00041 void *func_op( const char *fname, 00042 int argc, void **argv ) ); 00043 00044 #endif
1.7.4