Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update base64decode function parameters
  • Loading branch information
zhemant committed Apr 6, 2020
commit 158d3c1f5ed203607ee05582125fb0d1e61acc46
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ char *strReplace(char *orig, char *rep, char *with);

char *base64encode(const void *b64_encode_this, int encode_this_many_bytes);

char *base64decode(const void *b64_decode_this, int decode_this_many_bytes);
char *base64decode (const void *b64_decode_this, int decode_this_many_bytes, int *decoded_bytes);

#endif // INCLUDE_API_CLIENT_H