-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.h
41 lines (24 loc) · 908 Bytes
/
core.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
/*
*****************************************************************************
Assignment 1 - Milestone 2
Full Name : Manjot Singh
Student ID#: 171797210
Email : [email protected]
Section : ZBB
Authenticity Declaration:
I declare this submission is the result of my own work and has not been
shared with any other student or 3rd party content provider. This submitted
piece of work is entirely of my own creation.
*****************************************************************************
*/
#ifndef CORE_H
#define CORE_H
void clearInputBuffer(void);
void suspend(void);
void displayFormattedPhone(const char number[]);
int inputInt();
int inputIntPositive();
int inputIntRange(int high, int low);
char inputCharOption(const char name[]);
void inputCString(char string[], int min, int max);
#endif // !CORE_H