summaryrefslogtreecommitdiffstats
path: root/src/hci
diff options
context:
space:
mode:
authorHolger Lubitz2007-08-20 00:32:36 +0200
committerHolger Lubitz2007-08-20 00:32:36 +0200
commite7114f1215c907b18ca8588c4e5b8ae757ee5209 (patch)
treed8b869e421629f620afe2c6dfe302461f9c09b9f /src/hci
parentdefine __nonnull (diff)
downloadipxe-e7114f1215c907b18ca8588c4e5b8ae757ee5209.tar.gz
ipxe-e7114f1215c907b18ca8588c4e5b8ae757ee5209.tar.xz
ipxe-e7114f1215c907b18ca8588c4e5b8ae757ee5209.zip
__nonnull changes
Diffstat (limited to 'src/hci')
-rw-r--r--src/hci/editstring.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/hci/editstring.c b/src/hci/editstring.c
index 32483334..347249f7 100644
--- a/src/hci/editstring.c
+++ b/src/hci/editstring.c
@@ -27,6 +27,15 @@
*
*/
+static void insert_delete ( struct edit_string *string, size_t delete_len,
+ const char *insert_text )
+ __attribute__ (( nonnull (1) ));
+static void insert_character ( struct edit_string *string,
+ unsigned int character ) __nonnull;
+static void delete_character ( struct edit_string *string ) __nonnull;
+static void backspace ( struct edit_string *string ) __nonnull;
+static void kill_eol ( struct edit_string *string ) __nonnull;
+
/**
* Insert and/or delete text within an editable string
*