summaryrefslogtreecommitdiffstats
path: root/src/include/readline
diff options
context:
space:
mode:
authorMichael Brown2006-12-19 23:35:10 +0100
committerMichael Brown2006-12-19 23:35:10 +0100
commitb3c535e550ef5f4fffa58a60a3379230d98e2043 (patch)
tree2af7cbc6f67383397c4331966a9b9ab42926f608 /src/include/readline
parentCatch attempts to print NULL strings (diff)
downloadipxe-b3c535e550ef5f4fffa58a60a3379230d98e2043.tar.gz
ipxe-b3c535e550ef5f4fffa58a60a3379230d98e2043.tar.xz
ipxe-b3c535e550ef5f4fffa58a60a3379230d98e2043.zip
Skeletal (non-echoing) version of readline()
Diffstat (limited to 'src/include/readline')
-rw-r--r--src/include/readline/readline.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/readline/readline.h b/src/include/readline/readline.h
new file mode 100644
index 00000000..4214a44f
--- /dev/null
+++ b/src/include/readline/readline.h
@@ -0,0 +1,12 @@
+#ifndef _READLINE_H
+#define _READLINE_H
+
+/** @file
+ *
+ * Minmal readline
+ *
+ */
+
+extern char * readline ( const char *prompt );
+
+#endif /* _READLINE_H */