mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-17 21:03:43 +02:00
20 lines
466 B
C
20 lines
466 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);
|
|
|
|
#endif /* !LANG_H */
|