Module Name: src Committed By: christos Date: Sun Jan 18 18:10:01 UTC 2015
Modified Files: src/include: util.h Log Message: add estrto{i,u} (Kamil Rytarowski) To generate a diff of this commit: cvs rdiff -u -r1.65 -r1.66 src/include/util.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/include/util.h diff -u src/include/util.h:1.65 src/include/util.h:1.66 --- src/include/util.h:1.65 Thu May 2 03:17:35 2013 +++ src/include/util.h Sun Jan 18 13:10:01 2015 @@ -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 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);