aboutsummaryrefslogtreecommitdiffstats
path: root/src/base64.c
AgeCommit message (Collapse)AuthorFilesLines
2022-01-13Use char* for strings in public APIDavid Robillard1-13/+7
The constant casting just makes user code a mess, for no benefit.
2021-05-31Make most function parameters constDavid Robillard1-2/+4
More const never hurts in general, but in particular this allows the compiler to make better nullability deductions, which reduces the amount of manual nullability casting required.
2021-05-31Remove "static inline" for functions in implementation filesDavid Robillard1-3/+3
This is just noise since these are static functions local to a C compilation unit.
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-31Format all code with clang-formatDavid Robillard1-43/+51
2020-08-14Separate base64 implementationDavid Robillard1-0/+124