strutils: reindent the file
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
parent
ef4a6bef5f
commit
4ffc7c4f20
@ -15,15 +15,16 @@ long strtol_or_err(const char *str, const char *errmesg)
|
|||||||
long num;
|
long num;
|
||||||
char *end = NULL;
|
char *end = NULL;
|
||||||
|
|
||||||
if (str != NULL && *str != '\0') {
|
if (str != NULL && *str != '\0') {
|
||||||
errno = 0;
|
errno = 0;
|
||||||
num = strtol(str, &end, 10);
|
num = strtol(str, &end, 10);
|
||||||
if (errno == 0 && str != end && end != NULL && *end == '\0')
|
if (errno == 0 && str != end && end != NULL && *end == '\0')
|
||||||
return num;
|
return num;
|
||||||
}
|
}
|
||||||
error(EXIT_FAILURE, errno, "%s: '%s'", errmesg, str);
|
error(EXIT_FAILURE, errno, "%s: '%s'", errmesg, str);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* same as strtod(3) but exit on failure instead of returning crap
|
* same as strtod(3) but exit on failure instead of returning crap
|
||||||
*/
|
*/
|
||||||
@ -32,12 +33,12 @@ double strtod_or_err(const char *str, const char *errmesg)
|
|||||||
double num;
|
double num;
|
||||||
char *end = NULL;
|
char *end = NULL;
|
||||||
|
|
||||||
if (str != NULL && *str != '\0') {
|
if (str != NULL && *str != '\0') {
|
||||||
errno = 0;
|
errno = 0;
|
||||||
num = strtod(str, &end);
|
num = strtod(str, &end);
|
||||||
if (errno == 0 && str != end && end != NULL && *end == '\0')
|
if (errno == 0 && str != end && end != NULL && *end == '\0')
|
||||||
return num;
|
return num;
|
||||||
}
|
}
|
||||||
error(EXIT_FAILURE, errno, "%s: '%s'", errmesg, str);
|
error(EXIT_FAILURE, errno, "%s: '%s'", errmesg, str);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user