13 lines
283 B
C
13 lines
283 B
C
|
/*
|
||
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*/
|
||
|
|
||
|
#ifndef ABL_SEED_PARSE_H_
|
||
|
#define ABL_SEED_PARSE_H_
|
||
|
|
||
|
bool abl_seed_parse(struct vm *vm, char *cmdline, char *out_arg, uint32_t out_len);
|
||
|
|
||
|
#endif /* ABL_SEED_PARSE_H_ */
|