-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinputreader.h
More file actions
37 lines (35 loc) · 1.18 KB
/
Copy pathinputreader.h
File metadata and controls
37 lines (35 loc) · 1.18 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: inputreader.h
// Other Files: inputreader.c munch1.c munch1.h munch2.c munch2.h
// outputwriter.c outputwriter.h Queue.c Queue.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 __inputreader_h__
#define __inputreader_h__
/*
* Read from standard input, one line at a time. Reader will take the each line
* of the input and pass it to thread Munch1 through a queue of character
* strings.
* @param: array
* struct that store three different queues
*/
void *inputreader(void *array);
#endif