libkernaux/libc/include/stdlib.h

15 lines
143 B
C
Raw Normal View History

#ifndef _STDLIB_H
#define _STDLIB_H 1
#ifdef __cplusplus
extern "C" {
#endif
int atoi(const char *str);
#ifdef __cplusplus
}
#endif
#endif