summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-06 02:41:03 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-06 02:41:03 +0200
commit5af98f828476716954f327c479c4cf6321ae3fe4 (patch)
tree06195370467c227dec54ff8ca7d8d43dbd9b17dc
parenta9a1e00af1059a6b8c3e089238870fbf2608c087 (diff)
util: add decchar()/undecchar() calls
-rw-r--r--util.c12
-rw-r--r--util.h2
2 files changed, 14 insertions, 0 deletions
diff --git a/util.c b/util.c
index 9df6af953f..7306ddde34 100644
--- a/util.c
+++ b/util.c
@@ -701,6 +701,18 @@ int unoctchar(char c) {
return -1;
}
+char decchar(int x) {
+ return '0' + (x % 10);
+}
+
+int undecchar(char c) {
+
+ if (c >= '0' && c <= '9')
+ return c - '0';
+
+ return -1;
+}
+
char *cescape(const char *s) {
char *r, *t;
const char *f;
diff --git a/util.h b/util.h
index 49abce1dbb..9f9bca86f2 100644
--- a/util.h
+++ b/util.h
@@ -136,6 +136,8 @@ char hexchar(int x);
int unhexchar(char c);
char octchar(int x);
int unoctchar(char c);
+char decchar(int x);
+int undecchar(char c);
char *cescape(const char *s);
char *cunescape(const char *s);