2023-10-18 12:23:53 -07:00
|
|
|
|
|
|
|
#include "stdio.h"
|
2023-10-30 03:25:48 -07:00
|
|
|
#include "string.h"
|
2023-10-18 12:23:53 -07:00
|
|
|
#include "stdlib.h"
|
|
|
|
#include "unistd.h"
|
|
|
|
|
|
|
|
#ifndef INPUT
|
|
|
|
#define INPUT
|
|
|
|
|
|
|
|
// Error checking integer input
|
|
|
|
int integer_input(char*);
|
2023-10-30 03:25:48 -07:00
|
|
|
char* string_input(char*);
|
2023-10-18 12:23:53 -07:00
|
|
|
|
|
|
|
#endif
|