mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
It is split into - /libgnucash (for the non-gui bits) - /gnucash (for the gui) - /common (misc source files used by both) - /bindings (currently only holds python bindings) This is the first step in restructuring the code. It will need much more fine tuning later on.
45 lines
2.0 KiB
C
45 lines
2.0 KiB
C
/***************************************************************************
|
|
* -------------------
|
|
* 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
|