+const int BUF_SIZE = 1024;
+
+const char PROMPT[] = "\33[H" /* Move cursor 'home' */
+ "\33[J" /* Clear screen */
+ "> ";
+const char ACKNOWLEDGE[] = "[OK]";
+const struct timespec ACKNOWLEDGE_DELAY = {0, 300000000};
+
+typedef struct {
+ int interactive;
+} conf_t;
+
+conf_t parse_command_line(int argc, char *argv[]) {
+ conf_t conf = {0};