summaryrefslogtreecommitdiffstats
path: root/lib/strutils.c
diff options
context:
space:
mode:
authorDavidlohr Bueso2011-10-12 05:18:12 +0200
committerKarel Zak2011-10-12 10:01:26 +0200
commita883c6349c21a0cab209e100d936340c50e087d2 (patch)
tree1833599f15263341faf0e614752d7c30b77ecd77 /lib/strutils.c
parentinclude/loopdev.h: add missing function prototype (diff)
downloadkernel-qcow2-util-linux-a883c6349c21a0cab209e100d936340c50e087d2.tar.gz
kernel-qcow2-util-linux-a883c6349c21a0cab209e100d936340c50e087d2.tar.xz
kernel-qcow2-util-linux-a883c6349c21a0cab209e100d936340c50e087d2.zip
lib,strutils: share parse_range()
This function is currently only being used by partx(8), but it's handy and generic enough that we can use it elsewhere as well. Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Diffstat (limited to 'lib/strutils.c')
-rw-r--r--lib/strutils.c45
1 files changed, 44 insertions, 1 deletions
diff --git a/lib/strutils.c b/lib/strutils.c
index aad9f7738..fb1822976 100644
--- a/lib/strutils.c
+++ b/lib/strutils.c
@@ -424,7 +424,7 @@ int string_to_idarray(const char *list, int ary[], size_t arysz,
* as a possition in the 'ary' bit array. It means that the 'id' has to be in
* range <0..N> where N < sizeof(ary) * NBBY.
*
- * Returns: 0 on sucess, <0 on error.
+ * Returns: 0 on success, <0 on error.
*/
int string_to_bitarray(const char *list,
char *ary,
@@ -461,6 +461,49 @@ int string_to_bitarray(const char *list,
return 0;
}
+/*
+ * Parse the lower and higher values in a string containing
+ * "lower:higher" or "lower-higher" format. Note that either
+ * the lower or the higher values may be missing.
+ *
+ * Returns: 0 on success, <0 on error.
+ */
+int parse_range(const char *str, int *lower, int *upper)
+{
+ char *end = NULL;
+
+ if (!str)
+ return 0;
+
+ *upper = *lower = 0;
+ errno = 0;
+
+ if (*str == ':') { /* <:N> */
+ str++;
+ *upper = strtol(str, &end, 10);
+ if (errno || !end || *end || end == str)
+ return -1;
+ } else {
+ *upper = *lower = strtol(str, &end, 10);
+ if (errno || !end || end == str)
+ return -1;
+
+ if (*end == ':' && !*(end + 1)) /* <M:> */
+ *upper = 0;
+ else if (*end == '-' || *end == ':') { /* <M:N> <M-N> */
+ str = end + 1;
+ end = NULL;
+ errno = 0;
+ *upper = strtol(str, &end, 10);
+
+ if (errno || !end || *end || end == str)
+ return -1;
+ }
+ }
+ return 0;
+}
+
+
#ifdef TEST_PROGRAM
int main(int argc, char *argv[])