blob: 61d56ee25a569ab5fef57bc5940fce22870a742d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef SPM_USER_INPUT_H
#define SPM_USER_INPUT_H
int spm_user_yesno(int answer, int empty_input_is_yes);
int spm_prompt_user(const char *msg, int empty_input_is_yes);
void spm_user_yesno_test();
#endif //SPM_USER_INPUT_H
|