1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-17 15:45:32 -05:00
libkernaux/libc/stdlib.h

14 lines
143 B
C

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