david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

__nonnull changes

This commit is contained in:
Holger Lubitz 2007-08-20 00:32:36 +02:00
parent 3859abb7de
commit e7114f1215
1 changed files with 9 additions and 0 deletions

View File

@ -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
*