From 94d32126bf1e7a41cadaa8740ee76b79f1eb59ab Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 20 Feb 2011 00:00:37 +0100 Subject: [PATCH] strutils: new wrapper function strtoll_or_err Signed-off-by: Sami Kerola --- include/strutils.h | 1 + lib/strutils.c | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/include/strutils.h b/include/strutils.h index 462332d957..99d8acd2c1 100644 --- a/include/strutils.h +++ b/include/strutils.h @@ -7,6 +7,7 @@ extern int strtosize(const char *str, uintmax_t *res); extern long strtol_or_err(const char *str, const char *errmesg); +extern long long strtoll_or_err(const char *str, const char *errmesg); #ifndef HAVE_STRNLEN extern size_t strnlen(const char *s, size_t maxlen); diff --git a/lib/strutils.c b/lib/strutils.c index 39c9bdf022..acb7139dc2 100644 --- a/lib/strutils.c +++ b/lib/strutils.c @@ -188,6 +188,30 @@ err: errx(EXIT_FAILURE, "%s: '%s'", errmesg, str); return 0; } +/* + * same as strtoll(3) but exit on failure instead of returning crap + */ +long long strtoll_or_err(const char *str, const char *errmesg) +{ + long long num; + char *end = NULL; + + if (str == NULL || *str == '\0') + goto err; + errno = 0; + num = strtoll(str, &end, 10); + + if (errno || (end && *end)) + goto err; + + return num; +err: + if (errno) + err(EXIT_FAILURE, "%s: '%s'", errmesg, str); + else + errx(EXIT_FAILURE, "%s: '%s'", errmesg, str); + return 0; +} /* * Converts stat->st_mode to ls(1)-like mode string. The size of "str" must -- 2.47.2