diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-26 16:41:43 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:25:55 +0100 |
commit | e4e73a632524c382139034d4271f53b6089ab4cb (patch) | |
tree | 48e286e7dbac59a562431ad05d506833db968f6e /src/basic/escape.c | |
parent | 6bedfcbb2970e06a4d3280c8fb62083d252ede73 (diff) |
util-lib: split out hex/dec/oct encoding/decoding into its own file
Diffstat (limited to 'src/basic/escape.c')
-rw-r--r-- | src/basic/escape.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/escape.c b/src/basic/escape.c index cf05ce10ef..e763b5dac2 100644 --- a/src/basic/escape.c +++ b/src/basic/escape.c @@ -19,11 +19,11 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ +#include "escape.h" +#include "hexdecoct.h" #include "utf8.h" #include "util.h" -#include "escape.h" - size_t cescape_char(char c, char *buf) { char * buf_old = buf; |