blob: 1b30bbfc276bebcfbef0d5e77dc64f664fbf5202 [file] [log] [blame]
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
/*
* common/ini/ini_platform.h
*
* Copyright (C) 2020 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
#endif
#ifdef __cplusplus
extern "C" {
#endif
//c basic lib
char* plat_strtok_r(char *str, const char *delim, char **saveptr);
//File functions
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[]);
#ifdef __cplusplus
}
#endif
#endif //__INI_PLATFORM_H__