2000-04-27 22:03:57 +02:00
|
|
|
/*************
|
|
|
|
|
* Header file for parse.c
|
|
|
|
|
* 1999 E. Rouat
|
|
|
|
|
************/
|
|
|
|
|
|
2013-01-22 21:00:29 +01:00
|
|
|
#ifndef ngspice_PARSE_H
|
|
|
|
|
#define ngspice_PARSE_H
|
2000-05-13 18:22:16 +02:00
|
|
|
|
2011-12-11 19:05:00 +01:00
|
|
|
#include "ngspice/pnode.h"
|
|
|
|
|
#include "ngspice/wordlist.h"
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2006-10-12 04:51:13 +02:00
|
|
|
#ifndef free_pnode
|
2017-03-25 19:47:36 +01:00
|
|
|
#define free_pnode(ptr) \
|
|
|
|
|
do { \
|
|
|
|
|
free_pnode_x(ptr); \
|
|
|
|
|
ptr = NULL; \
|
|
|
|
|
} while(0)
|
2006-10-12 04:51:13 +02:00
|
|
|
#endif
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|