1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-03 01:15:29 +03:00
eda-tools/b2/lang.h
Werner Almesberger e99a9f4705 b2/: add parsing of part inventories (WIP)
Also simplify representation of packaging variants.
2012-04-30 20:19:55 -03:00

25 lines
597 B
C

/*
* lang.h - Things lang.l and lang.y export
*
* Copyright 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 LANG_H
#define LANG_H
void parse_hierarchy(void);
void parse_characteristics(void);
void parse_inventory(void);
void yywarnf(const char *fmt, ...);
void yyerrorf(const char *fmt, ...);
void yyerror(const char *s);
#endif /* !LANG_H */