mirror of
https://github.com/cathugger/mkp224o.git
synced 2025-01-09 11:07:19 -03:00
delet trailing whitespace
This commit is contained in:
parent
cf5ac5f929
commit
ebe1d5b678
5 changed files with 12 additions and 12 deletions
2
base64.h
2
base64.h
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue