Startpunkten

This commit is contained in:
2026-03-05 13:31:50 +01:00
commit 86a20ae0e1
16 changed files with 1305 additions and 0 deletions

31
Lab2/tree.h Normal file
View File

@@ -0,0 +1,31 @@
/*
* Laboration 2 i C och UNIX
*
* Komplett shell
* =========================================
*
* Christian Ohlsson, di7chro@cse.kau.se
* Stefan Sonesson, di7stes@cse.kau.se
*
* Karlstads Universitet, 991209
*
*
*===========================================
*/
#ifndef _TREE_H
#define _TREE_H
#include <stdlib.h>
extern char *symTable[];
/*Nod som finns i trädet*/
typedef struct node{
int nodeType;
int index;
struct node* left;
struct node* right;
}treeNode;
typedef treeNode *treePtr;
#endif