Files
screen/src/input.h
Simon Ruderich 263d9c6c8d make all header files self-contained and include it in the source file
Including the header in the source file guarantees matching signatures,
thus preventing subtle errors.

Self-contained headers document the required headers and makes using it
easier to use the header in new source files.
2016-02-07 17:57:37 +01:00

11 lines
239 B
C

#ifndef SCREEN_INPUT_H
#define SCREEN_INPUT_H
#include <stdlib.h>
void inp_setprompt (char *, char *);
void Input (char *, size_t, int, void (*)(char *, size_t, void *), char *, int);
int InInput (void);
#endif /* SCREEN_INPUT_H */