You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
384 B
14 lines
384 B
//
|
|
// Created by MightyPork on 2017/11/26.
|
|
//
|
|
|
|
#ifndef GEX_AVRLIBC_H_H
|
|
#define GEX_AVRLIBC_H_H
|
|
|
|
int avr_atoi(const char *p);
|
|
long avr_strtol(const char *nptr, char **endptr, register int base);
|
|
long avr_atol(const char *p);
|
|
double avr_strtod (const char * nptr, char ** endptr);
|
|
unsigned long avr_strtoul(const char *nptr, char **endptr, register int base);
|
|
|
|
#endif //GEX_AVRLIBC_H_H
|
|
|