summaryrefslogtreecommitdiff
path: root/googleurl/strtoull.h
blob: 28c398ce46d151a21ae81bcda05e9898af36de56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _STRTOLL_H_
#define _STRTOLL_H_

#include <stdlib.h>

#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint64_t __strtoull(const char *nptr, char **endptr, int base);
#ifdef __cplusplus 
}
#endif
#define strtoull __strtoull

#endif