-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathppd_shared.h
More file actions
31 lines (29 loc) · 828 Bytes
/
ppd_shared.h
File metadata and controls
31 lines (29 loc) · 828 Bytes
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
/***********************************************************************
* COSC1076 - Advanced Programming Techniques
* Semester 2 2016 Assignment #2
* Full Name : Drew Nuttall-Smith
* Student Number : s3545039
* Course Code : COSC1076
* Program Code : BP096
* Start up code provided by Paul Miller
* Some codes are adopted here with permission by an anonymous author
***********************************************************************/
#ifndef PPD_SHARED
#define PPD_SHARED
/* the last two characters required in a string as returned from fgets */
#define EXTRACHARS 2
/**
* datatype to represent a boolean value within the system
**/
typedef enum truefalse
{
/**
* the constant for false
**/
FALSE,
/**
* the constant for true
**/
TRUE
} BOOLEAN;
#endif