-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmunch2.h
38 lines (36 loc) · 1.19 KB
/
munch2.h
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
38
////////////////////////////////////////////////////////////////////////////////
// Main File: main.c
// This File: munch2.h
// Other Files: inputreader.c inputreader.h munch1.c munch1.h munch2.c
// outputwriter.c outputwriter.h Queue.c Queue.h
// Semester: CS 537 Fall 2018
//
// Author: Youmin Han
// Email: [email protected]
// CS Login: youmin
//
// Author: Xianjie Zheng
// Email: [email protected]
// 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 __munch2_h__
#define __munch2_h__
/*
* Scan the line and convert all lower case letters to upper case (e.g.,convert
* "a" to "A"). It will then pass the line to thread Writer though yet another
* queue of character strings.
*
* @param: array
* struct that store three different queues
*/
void *munch2(void *array) ;
#endif