mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
2.0 KiB
45 lines
2.0 KiB
/***************************************************************************
|
|
* -------------------
|
|
* create : Tue Jul 11 20:21:18 2000
|
|
* copyright: (C) 2000 by Terry D. Boldt
|
|
* email : tboldt@attglobal.net
|
|
* -------------------
|
|
***************************************************************************/
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
/***************************************************************************
|
|
* Global Function Prototypes
|
|
* Tue Jul 11 20:21:18 2000
|
|
*
|
|
***************************************************************************/
|
|
|
|
#ifndef FIN_SPL_PROTOS_H
|
|
#define FIN_SPL_PROTOS_H
|
|
|
|
/*==================================================*/
|
|
/* expression_parser.c */
|
|
/* Line Number: 344 */
|
|
parser_env_ptr init_parser(
|
|
var_store_ptr predefined_vars,
|
|
gchar *radix_point,
|
|
gchar *group_char,
|
|
void *trans_numeric(const char *digit_str,
|
|
gchar *radix_point,
|
|
gchar *group_char,
|
|
char **rstr),
|
|
void *numeric_ops(char op_sym,
|
|
void *left_value,
|
|
void *right_value),
|
|
void *negate_numeric(void *value),
|
|
void free_numeric(void *numeric_value),
|
|
void *func_op( const char *fname,
|
|
int argc, void **argv ) );
|
|
|
|
#endif
|