-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpers.h
57 lines (48 loc) · 1.7 KB
/
helpers.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/******************************************************************************
** Student name: Elliott Gorrell
** Student number: s3452258
** Course: Advanced Programming Techniques - S1 2018
******************************************************************************/
#ifndef HELPERS_H
#define HELPERS_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <ctype.h>
#define RESET "\033[0m"
#define BLACK "\033[30m" /* Black */
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
#define YELLOW "\033[33m" /* Yellow */
#define BLUE "\033[34m" /* Blue */
#define MAGENTA "\033[35m" /* Magenta */
#define CYAN "\033[36m" /* Cyan */
#define WHITE "\033[37m" /* White */
#define BOLDBLACK "\033[1m\033[30m" /* Bold Black */
#define BOLDRED "\033[1m\033[31m" /* Bold Red */
#define BOLDGREEN "\033[1m\033[32m" /* Bold Green */
#define BOLDYELLOW "\033[1m\033[33m" /* Bold Yellow */
#define BOLDBLUE "\033[1m\033[34m" /* Bold Blue */
#define BOLDMAGENTA "\033[1m\033[35m" /* Bold Magenta */
#define BOLDCYAN "\033[1m\033[36m" /* Bold Cyan */
#define BOLDWHITE "\033[1m\033[37m" /* Bold White */
typedef enum boolean
{
FALSE = 0,
TRUE
} Boolean;
#define NEW_LINE_SPACE 1
#define NULL_SPACE 1
/**
* This is used to compensate for the extra character spaces taken up by
* the '\n' and '\0' when input is read through fgets().
**/
#define EXTRA_SPACES (NEW_LINE_SPACE + NULL_SPACE)
#define EMPTY_STRING ""
/**
* Call this function whenever you detect buffer overflow but only call this
* function when this has happened.
**/
void readRestOfLine();
#endif