xref: /aosp_15_r20/external/coreboot/src/commonlib/bsd/include/commonlib/bsd/string.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
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