mirror of
https://git.disroot.org/80486DX2-66/polonium.git
synced 2024-11-08 21:52:34 +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 */
|