1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-06-28 14:05:27 +03:00
fped/fpd.h
werner e3794589a8 - when editing a value list, we need to return the values and free them in case
of successful validation
- free previous expression in set_col_values
- added rapid entry also for table values (fill the row)



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5460 99fdad57-331a-0410-800a-d7fa5415bdb3
2009-08-16 05:05:12 +00:00

34 lines
709 B
C

/*
* fpd.c - Things fpd.l and fpd.y export
*
* Written 2009 by Werner Almesberger
* Copyright 2009 by Werner Almesberger
*
* 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.
*/
#ifndef FPD_H
#define FPD_H
#include "expr.h"
#include "obj.h"
extern struct expr *expr_result;
extern const char *var_id;
extern struct value *var_value_list;
void scan_empty(void);
void scan_expr(const char *s);
void scan_var(const char *s);
void scan_values(const char *s);
int yyparse(void);
#endif /* !FPD_H */