15 lines
244 B
C
15 lines
244 B
C
/*
|
|
* hob_parser.h
|
|
*
|
|
* Created on: 26 juil. 2022
|
|
* Author: JackCarterSmith
|
|
*/
|
|
|
|
|
|
#ifndef SRC_HOB_PARSER_H_
|
|
#define SRC_HOB_PARSER_H_
|
|
|
|
unsigned char parseHOBFile(const char* fileName, T_HOB* hob_struct);
|
|
|
|
#endif /* SRC_HOB_PARSER_H_ */
|