Skip to content
Snippets Groups Projects
Commit 3abedd6b authored by Suna Yelgin's avatar Suna Yelgin
Browse files

Update syntree.h

parent 531da86d
Branches
No related merge requests found
......@@ -3,12 +3,17 @@
/* *** Strukturen *********************************************************** */
typedef /* muss noch definiert werden */ SyntreeNodeID;
typedef unsigned int syntree_nid;
SyntreeNodeID;
/**@brief Struktur des abstrakten Syntaxbaumes.
*/
typedef struct {
/* hier sollte noch etwas dazu kommen */
typedef struct {
struct syntree *child;
syntree_nid value;
int size;
int allocated;
} Syntree;
/* *** öffentliche Schnittstelle ******************************************** */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment