summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/parseopt.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/parseopt.c b/lib/parseopt.c
index 8211733e3b..70983066d9 100644
--- a/lib/parseopt.c
+++ b/lib/parseopt.c
@@ -122,3 +122,33 @@ again:
*val = xstrndup(parsed, endp - parsed);
}
+
+void parseopt_llu_suffix(const char *options, const char *opt,
+ unsigned long long *val)
+{
+ const char *start;
+ size_t optlen = strlen(opt);
+ unsigned long long v;
+ char *endp;
+
+again:
+ start = strstr(options, opt);
+
+ if (!start)
+ return;
+
+ if (start > options && start[-1] != ',') {
+ options = start;
+ goto again;
+ }
+
+ if (start[optlen] != '=') {
+ options = start;
+ goto again;
+ }
+
+ v = strtoull_suffix(start + optlen + 1, &endp, 0);
+
+ if (*endp == ',' || *endp == '\0')
+ *val = v;
+}