OS1/directories/input.h

15 lines
203 B
C
Raw Permalink Normal View History

#include "stdio.h"
2023-10-30 03:25:48 -07:00
#include "string.h"
#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*);
#endif