From ef916ddaff2c651c41e4737cdb50abb06365f8b3 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 16 Dec 2018 16:57:43 -0500 Subject: Move base64 back to pls.c --- chat.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chat.h') diff --git a/chat.h b/chat.h index 9bce7a0..441056c 100644 --- a/chat.h +++ b/chat.h @@ -190,9 +190,6 @@ void logFmt( ) __attribute__((format(printf, 3, 4))); void logReplay(struct Tag tag); -size_t base64Size(size_t len); -void base64(char *dst, const byte *src, size_t len); - wchar_t *wcsnchr(const wchar_t *wcs, size_t len, wchar_t chr); wchar_t *wcsnrchr(const wchar_t *wcs, size_t len, wchar_t chr); wchar_t *ambstowcs(const char *src); @@ -201,6 +198,9 @@ char *awcsntombs(const wchar_t *src, size_t nwc); int vaswprintf(wchar_t **ret, const wchar_t *format, va_list ap); int aswprintf(wchar_t **ret, const wchar_t *format, ...); +size_t base64Size(size_t len); +void base64(char *dst, const byte *src, size_t len); + // HACK: clang won't check wchar_t *format strings. #ifdef NDEBUG #define uiFmt(tag, heat, format, ...) uiFmt(tag, heat, L##format, __VA_ARGS__) -- cgit 1.4.0 > refs log tree commit diff
path: root/command.c (unfollow)
Commit message (Expand)Author
2020-02-11Use time_t for save signatureJune McEnroe
2020-02-11Set self.nick to * initiallyJune McEnroe
2020-02-11Define ColorCap instead of hardcoding 100June McEnroe
2020-02-11Move hash to top of chat.hJune McEnroe
2020-02-11Move base64 out of chat.hJune McEnroe
2020-02-11Move XDG_SUBDIR out of chat.hJune McEnroe
2020-02-11Fix whois idle unit calculationJune McEnroe
2020-02-11Cast towupper to wchar_tJune McEnroe
2020-02-11Cast set but unused variables to voidJune McEnroe
2020-02-11Declare strlcatJune McEnroe
2020-02-11Check if VDSUSP existsJune McEnroe
2020-02-11Fix completeReplace iterationJune McEnroe
2020-02-11Use pkg(8) to configure on FreeBSDJune McEnroe
2020-02-11Remove legacy codeJune McEnroe
2020-02-11Add INSTALLING section to READMEJune McEnroe