mirror of
https://git.disroot.org/80486DX2-66/polonium.git
synced 2024-11-09 15:02:20 +05:30
13 lines
216 B
C
13 lines
216 B
C
|
#ifndef _ATOUMAX_BASE10_H
|
||
|
#define _ATOUMAX_BASE10_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
/* functions definitions */
|
||
|
uintmax_t atoumax_base10(const char* s);
|
||
|
|
||
|
#endif /* _ATOUMAX_BASE10_H */
|