woody/parse.c

24 lines
352 B
C

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