blob: d0cc489de60cab60939139e38abeb295f153287d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/****************************************************************************
modules.h
Code that creates the "canonical" Imgtool library
****************************************************************************/
#ifndef MODULES_H
#define MODULES_H
#include "library.h"
imgtoolerr_t imgtool_create_cannonical_library(int omit_untested, imgtool_library **library);
#endif /* MODULES_H */
|