ngspice/src/frontend/parse.h

21 lines
340 B
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/*************
* Header file for parse.c
* 1999 E. Rouat
* $Id$
2000-04-27 22:03:57 +02:00
************/
#ifndef _PARSE_H
#define _PARSE_H
#include <pnode.h>
#include <wordlist.h>
2000-04-27 22:03:57 +02:00
struct pnode * ft_getpnames(wordlist *wl, bool check);
#ifndef free_pnode
#define free_pnode(ptr) free_pnode_x(ptr); ptr=NULL;
#endif
void free_pnode_x(struct pnode *t);
2000-04-27 22:03:57 +02:00
#endif