2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-24 12:11:33 +00:00

__nonnull changes

This commit is contained in:
Holger Lubitz 2007-08-20 00:32:36 +02:00
parent 3859abb7de
commit e7114f1215

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
*