diff options
author | emersion <contact@emersion.fr> | 2018-10-04 21:50:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 21:50:05 +0200 |
commit | c8d1f376d35132ba119e1f02b6640484c55a34c7 (patch) | |
tree | 0cd5ab028b769c0c437de78a64b412de3160a913 /include | |
parent | eecebcafc69ac006a7ddc1a79cc5dc47cce287b6 (diff) | |
parent | e2dc6dfcd8287f4e61e91b616c1f8feb3aace719 (diff) | |
download | sway-c8d1f376d35132ba119e1f02b6640484c55a34c7.tar.xz |
Merge pull request #2764 from ianyfan/rm-base64
Remove obsolete base64.c file
Diffstat (limited to 'include')
-rw-r--r-- | include/util.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/util.h b/include/util.h index 46ed1533..19d2e7cf 100644 --- a/include/util.h +++ b/include/util.h @@ -4,7 +4,6 @@ #include <stdint.h> #include <stdbool.h> #include <unistd.h> -#include <sys/types.h> #include <wlr/types/wlr_output_layout.h> #include <xkbcommon/xkbcommon.h> @@ -78,9 +77,6 @@ bool parse_boolean(const char *boolean, bool current); */ char* resolve_path(const char* path); -char *b64_encode(const char* binaryData, size_t len, size_t *flen); -unsigned char *b64_decode(const char *ascii, size_t len, size_t *flen); - bool sway_dir_to_wlr(enum movement_direction dir, enum wlr_direction *out); #endif |