]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - include/con-utils.h
refactor path functions, working do_rm()
[z180-stamp.git] / include / con-utils.h
index 15a3ce82b9befddf2b3434fc44c4a0089dc67966..a71fdf9f3c12a49a42651b9e63b7ffb4b591a685 100644 (file)
@@ -1,22 +1,30 @@
-#ifndef CON_UTILS_H            
+/*
+ * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
+/*
+ * Console utilities
+ */
+
+#ifndef CON_UTILS_H
 #define CON_UTILS_H
 
 uint_fast8_t tstc(void);
 
 int my_getchar(uint_fast8_t waitforchar);
 
-/* test if ctrl-c was pressed */
+/* Test if ctrl-c was pressed */
 uint_fast8_t ctrlc(void);
 
-
-/* pass 1 to disable ctrlc() checking, 0 to enable.
- * returns previous state
- */
+/* Pass 1 to disable ctrlc() checking, 0 to enable. Returns previous state. */
 uint_fast8_t disable_ctrlc(uint_fast8_t disable);
 
 uint_fast8_t had_ctrlc (void);
 void clear_ctrlc(void);
 
-#endif /* CON_UTILS_H */
-
+/* Reads user's confirmation. Returns 1 if user's input is "y", "Y", "yes" or "YES" */
+uint_fast8_t confirm_yes(void);
 
+#endif /* CON_UTILS_H */