diff options
| author | christos <christos@NetBSD.org> | 2015-01-18 18:10:01 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2015-01-18 18:10:01 +0000 |
| commit | eab4aa394ce03dfd0b9f191baa63b653bbac7cc9 (patch) | |
| tree | f6989ca78a101cc5f6938711713f66bfd11640d8 | |
| parent | de5349ebb7476c7db8767f6aa0bae132b74aa45e (diff) | |
add estrto{i,u} (Kamil Rytarowski)
| -rw-r--r-- | include/util.h | 4 |
1 files changed, 3 insertions, 1 deletions
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); |
