#ifndef MISC_H #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /* * Bionic's atoi runs through strtol(). * Use our own implementation for faster conversion. */ int parse_int(const char *str); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* MISC_H */