blob: bf0c18f55761964abba25ae1d3afd779480bc041 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _USR_IMGARCHIVE_H
#define _USR_IMGARCHIVE_H
/** @file
*
* Archive image management
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/image.h>
extern int imgextract ( struct image *image, const char *name );
#endif /* _USR_IMGARCHIVE_H */
|