summaryrefslogtreecommitdiff
path: root/src/stdlib/strtoll.c
blob: 2f40229cf48657eda0cd7a87579c42eb7156638b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdlib.h>

long long int strtoll(const char * restrict nptr, char ** restrict endptr, int base)
{
	intmax_t ret = strtoimax(nptr, endptr, base);
	if (ret < LLONG_MIN) {
	}
	if (ret > LLONG_MAX) {
	}
	return (long long int)ret;
}

/*
STDC(199901)
*/