| /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ |
| * Copyright (c) 2019 Amlogic, Inc. All rights reserved. |
| void BinFileUninit(void); |
| int ReadBinFile(const char* filename); |
| int GetBinData(unsigned char* file_buf, unsigned int file_size); |
| void IniParserInit(void); |
| void IniParserUninit(void); |
| int IniParseFile(const char* filename); |
| int IniParseMem(unsigned char* file_buf); |
| int IniSetSaveFileName(const char* filename); |
| void IniParserFree(void); |
| void IniListSection(void); |
| const char* IniGetString(const char* section, const char* key, const char* def_value); |
| int IniSetString(const char *section, const char *key, const char *value); |
| int IniSaveToFile(const char *filename); |