From eab4aa394ce03dfd0b9f191baa63b653bbac7cc9 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 18 Jan 2015 18:10:01 +0000 Subject: add estrto{i,u} (Kamil Rytarowski) --- include/util.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/util.h b/include/util.h index 941e4be1ec3..a9392a3d550 100644 --- a/include/util.h +++ b/include/util.h @@ -1,4 +1,4 @@ -/* $NetBSD: util.h,v 1.65 2013/05/02 07:17:35 matt Exp $ */ +/* $NetBSD: util.h,v 1.66 2015/01/18 18:10:01 christos Exp $ */ /*- * Copyright (c) 1995 @@ -147,6 +147,8 @@ size_t estrlcpy(char *, const char *, size_t); size_t estrlcat(char *, const char *, size_t); char *estrdup(const char *); char *estrndup(const char *, size_t); +intmax_t estrtoi(const char *, int, intmax_t, intmax_t); +uintmax_t estrtou(const char *, int, uintmax_t, uintmax_t); void *ecalloc(size_t, size_t); void *emalloc(size_t); void *erealloc(void *, size_t); -- cgit