19 lines
376 B
C
19 lines
376 B
C
/**
|
|
* \file hob_parser.h
|
|
* \date 26/07/2022
|
|
* \author JackCarterSmith
|
|
* \copyright GPL-v3.0
|
|
* \brief Decode HOB file structure.
|
|
*/
|
|
|
|
#include "options.h"
|
|
#include "hob_struct.h"
|
|
|
|
|
|
#ifndef SRC_HOB_PARSER_H_
|
|
#define SRC_HOB_PARSER_H_
|
|
|
|
unsigned char RSP_ModelLib_ParseHOBFile(const char* fileName, T_HOB* hob_struct, T_PROG_OPTIONS* p_opts);
|
|
|
|
#endif /* SRC_HOB_PARSER_H_ */
|