woody/parse.c

19 lines
253 B
C

#include <inttypes.h>
#include <stdio.h>
#include "token.h"
#include "parse.h"
/**
* Takes the tokenized program and parses them into an array of trees.
*/
int
parseall(struct parsestate *ps)
{
struct parsenode *this;
while (1) {
}
return 0;
}