mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-11 07:25:07 +01:00
11 lines
189 B
C
11 lines
189 B
C
#ifndef _ATOI32_H
|
|
#define _ATOI32_H
|
|
|
|
#include <stddef.h>
|
|
#include <inttypes.h>
|
|
|
|
int32_t atoi32_signed(const char* input_string);
|
|
uint32_t atoi32_unsigned(const char* input_string);
|
|
|
|
#endif
|