delet trailing whitespace

This commit is contained in:
cathugger 2018-07-12 13:05:53 +00:00
parent cf5ac5f929
commit ebe1d5b678
5 changed files with 12 additions and 12 deletions

View file

@ -10,4 +10,4 @@ size_t base64_from(u8 *dst,const char *src,size_t slen);
// returns 1 if whole string is good, 0 if string contains invalid data
int base64_valid(const char *src,size_t *count);
// aligns data length to something base64 can represent without padding
#define BASE64_DATA_ALIGN(l) (((l + 2) / 3) * 3)
#define BASE64_DATA_ALIGN(l) ((((l) + 2) / 3) * 3)