1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 3 #ifndef _COMMONLIB_BSD_STRING_H_ 4 #define _COMMONLIB_BSD_STRING_H_ 5 6 #include <stdint.h> 7 8 unsigned int skip_atoi(char **ptr); 9 10 #endif /* _COMMONLIB_BSD_STRING_H_ */ 11