mirror of
https://git.savannah.gnu.org/git/screen.git
synced 2026-02-19 22:02:34 +02:00
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.
11 lines
239 B
C
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 */
|