1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-10-01 09:42:34 +03:00
fped/fpd.h
werner 64f80e84a2 Columns and loops can now be entered in one step as var = val, val, ...
- moved definition of expr_result from expr.c to fpd.y
- new header file fpd.h with all the things fpd.l and fpd.y export
- edit_var already calls edit_nothing, so there's no need to call it before
- added rapid entry option for loops, variables, and columns: var = val, ...



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

33 lines
676 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);
int yyparse(void);
#endif /* !FPD_H */