Commit 8eb024d589c63ad941766acedfd7f4228117e20c

Ran Benita 2013-10-27T20:17:29

scanner-utils: add helper for hex string escape Like the already existing oct. Signed-off-by: Ran Benita <ran234@gmail.com>

diff --git a/src/scanner-utils.h b/src/scanner-utils.h
index fc231ab..57c5ec5 100644
--- a/src/scanner-utils.h
+++ b/src/scanner-utils.h
@@ -156,4 +156,17 @@ oct(struct scanner *s, uint8_t *out)
     return i > 0;
 }
 
+static inline bool
+hex(struct scanner *s, uint8_t *out)
+{
+    int i;
+    for (i = 0, *out = 0; is_xdigit(peek(s)) && i < 2; i++) {
+        const char c = next(s);
+        const char offset = (c >= '0' && c <= '9' ? '0' :
+                             c >= 'a' && c <= 'f' ? 'a' - 10 : 'A' - 10);
+        *out = *out * 16 + c - offset;
+    }
+    return i > 0;
+}
+
 #endif