strtoull.c at [6861d15aac]

File strtoull.c artifact a2ea6970d9 part of check-in 6861d15aac


#include <sys/types.h>
#include <stdlib.h>
#include <limits.h>
#include <ctype.h>
#include <stdio.h>

/* We only handle base 10. */
unsigned long long int strtoull(const char *nptr, char **endptr, int base) {
	unsigned long long int retval = 0;
	const char **endptrd = (const char **) endptr;
	char *idx = NULL;

	for (idx = nptr; *idx != '\0' && isdigit(*idx); idx++) {
		retval *= 10;
		retval += (*idx - '0');
	}

	if (endptrd != NULL) {
		*endptrd = idx;
	}

	return(retval);
}