14 lines
203 B
C
14 lines
203 B
C
|
|
#include "stdio.h"
|
|
#include "string.h"
|
|
#include "stdlib.h"
|
|
#include "unistd.h"
|
|
|
|
#ifndef INPUT
|
|
#define INPUT
|
|
|
|
// Error checking integer input
|
|
int integer_input(char*);
|
|
char* string_input(char*);
|
|
|
|
#endif
|