diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-09-10 07:05:19 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-09-10 07:05:19 -0400 |
commit | 254466e4a05d8110e4b5a999d0c5911a6c9eebb2 (patch) | |
tree | 060317eeccaa7cdcb7005b122ccca524848dccdb /src/libudev/util.h | |
parent | 15ab35551bbaf525ef7a45af58ce7284ed84f3c6 (diff) |
src/libudev/util.c: reintroduce cescape and octchar
Diffstat (limited to 'src/libudev/util.h')
-rw-r--r-- | src/libudev/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libudev/util.h b/src/libudev/util.h index 7b6571ab10..18109938e0 100644 --- a/src/libudev/util.h +++ b/src/libudev/util.h @@ -131,8 +131,10 @@ char *strnappend(const char *s, const char *suffix, size_t length); char *truncate_nl(char *s); +char octchar(int x) _const_; char hexchar(int x) _const_; +char *cescape(const char *s); char *xescape(const char *s, const char *bad); bool dirent_is_file_with_suffix(const struct dirent *de, const char *suffix) _pure_; |