diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-25 10:56:23 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-25 10:56:23 -0500 |
commit | 3ab13be7591161e5dd8ea0fd2830820a5c8d4fee (patch) | |
tree | 3095aeefd0b7d47b914225d8345e1c7e3eccf64e /include/user_input.h | |
parent | 7b2ab0211cc7dd4d32984c652e49a6dd2180498b (diff) | |
download | spmc-3ab13be7591161e5dd8ea0fd2830820a5c8d4fee.tar.gz |
Initial commit of user_input.[c,h]
Diffstat (limited to 'include/user_input.h')
-rw-r--r-- | include/user_input.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/user_input.h b/include/user_input.h new file mode 100644 index 0000000..4e051ed --- /dev/null +++ b/include/user_input.h @@ -0,0 +1,7 @@ +#ifndef SPM_USER_INPUT_H +#define SPM_USER_INPUT_H + +int spm_user_yesno(int answer, int empty_input_is_yes); +void spm_user_yesno_test(); + +#endif //SPM_USER_INPUT_H |