mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 05:21:49 +03:00
[image] Use list_first_entry() to clarify logic in main()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -124,6 +124,15 @@ static inline int have_images ( void ) {
|
||||
return ( ! list_empty ( &images ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve first image
|
||||
*
|
||||
* @ret image Image, or NULL
|
||||
*/
|
||||
static inline struct image * first_image ( void ) {
|
||||
return list_first_entry ( &images, struct image, list );
|
||||
}
|
||||
|
||||
extern struct image * alloc_image ( void );
|
||||
extern void image_set_uri ( struct image *image, struct uri *uri );
|
||||
extern int image_set_cmdline ( struct image *image, const char *cmdline );
|
||||
|
||||
Reference in New Issue
Block a user