mirror of
https://github.com/ipxe/ipxe
synced 2025-12-18 10:30:23 +03:00
__nonnull changes
This commit is contained in:
@@ -28,8 +28,10 @@ struct edit_box {
|
|||||||
|
|
||||||
extern void init_editbox ( struct edit_box *box, char *buf, size_t len,
|
extern void init_editbox ( struct edit_box *box, char *buf, size_t len,
|
||||||
WINDOW *win, unsigned int row, unsigned int col,
|
WINDOW *win, unsigned int row, unsigned int col,
|
||||||
unsigned int width );
|
unsigned int width )
|
||||||
extern void draw_editbox ( struct edit_box *box );
|
__attribute__ (( nonnull (1, 2) ));
|
||||||
|
extern void draw_editbox ( struct edit_box *box ) __nonnull;
|
||||||
|
static inline int __pure edit_editbox ( struct edit_box *box, int key ) __nonnull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Edit text box widget
|
* Edit text box widget
|
||||||
|
|||||||
Reference in New Issue
Block a user