| /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */ |
| * Copyright (c) 2019 Amlogic, Inc. All rights reserved. |
| #ifndef __INI_PLATFORM_H__ |
| #define __INI_PLATFORM_H__ |
| #if (defined CC_COMPILE_IN_UBOOT) |
| #define strtoul simple_strtoul |
| #define strtol simple_strtol |
| char* plat_strtok_r(char *str, const char *delim, char **saveptr); |
| int iniIsFileExist(const char *file_path); |
| int iniGetFileSize(const char *file_path); |
| int iniReadFileToBuffer(const char *file_path, int offset, int rd_size, unsigned char data_buf[]); |
| #endif //__INI_PLATFORM_H__ |