You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
340 B
20 lines
340 B
/*************
|
|
* Header file for parse.c
|
|
* 1999 E. Rouat
|
|
* $Id$
|
|
************/
|
|
|
|
#ifndef _PARSE_H
|
|
#define _PARSE_H
|
|
|
|
#include <pnode.h>
|
|
#include <wordlist.h>
|
|
|
|
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);
|
|
|
|
|
|
#endif
|