blob: c60561037636893cc12bbe81a8346186a4218a93 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#ifndef __AML_STRTOUL_H__
#define __AML_STRTOUL_H__
#ifdef __cplusplus
extern "C" {
#endif
unsigned long strtoul(const char *nptr, char **endptr, int base);
#ifdef __cplusplus
}
#endif
#endif