diff options
-rw-r--r-- | util.c | 12 | ||||
-rw-r--r-- | util.h | 2 |
2 files changed, 14 insertions, 0 deletions
@@ -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; @@ -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); |