#ifndef PYTHON_COMMAND_H
#define PYTHON_COMMAND_H
#include <Python.h>
PyObject *construct_func(gchar *func_name, gchar **func_lines, gint line_num);
int sg_eval_quiet(gchar *func_def);
PyObject *sg_eval_func(gchar *func_def, gdouble x_value, gdouble *y_value);
PyObject * sg_eval_func_xy(gchar *func_def, gdouble x_value, gdouble y_value,
gdouble *z_value);
gdouble *sg_eval_expr_double(gchar *expr, gint *num, gint expect);
gchar **sg_eval_expr_string(gchar *expr, gint *num);
int sg_eval_script(gchar *fname);
int python_simple(gchar *command, gint count);
#endif
syntax highlighted by Code2HTML, v. 0.9.1