-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogexe.h
More file actions
37 lines (34 loc) · 1.13 KB
/
Copy pathprogexe.h
File metadata and controls
37 lines (34 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
////////////////////////////////////////////////////////////////////////////////
// Main File: main.c
// This File: progexe.h
// Other Files: progexe.c Textparsing.c Textparsing.h linkedlist.c
// linkedlist.h buildgraph.c buildgraph.h buildrepr.c
// buildrepr.h
// Semester: CS 537 Fall 2018
//
// Author: Youmin Han
// Email: youmin.han@wisc.edu
// CS Login: youmin
//
// Author: Xianjie Zheng
// Email: xzheng97@wisc.edu
// CS Login: xianjie
//
/////////////////////////// OTHER SOURCES OF HELP //////////////////////////////
// fully acknowledge and credit all sources of help,
// other than Instructors and TAs.
//
// Persons: NULL
//
// Online sources: NULL
//
//////////////////////////// 80 columns wide ///////////////////////////////////
#ifndef progexe_h
#define progexe_h
#include <stdio.h>
#include "buildrepr.h"
#include "linkedlist.h"
void progexe(struct LinklistNode* head);
void executehelper (struct node* head);
void execute(struct node* head);
#endif /* progexe_h */