mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-06 04:50:17 +02:00
36 lines
789 B
C
36 lines
789 B
C
/*
|
|
* fpd.c - Things fpd.l and fpd.y export
|
|
*
|
|
* Written 2009, 2012 by Werner Almesberger
|
|
* Copyright 2009, 2012 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;
|
|
|
|
|
|
int dbg_print(const struct expr *expr, const struct frame *frame);
|
|
|
|
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 */
|