aboutsummaryrefslogtreecommitdiffstats
path: root/src/base64.c
AgeCommit message (Collapse)AuthorFilesLines
2023-04-05Fix sign conversion warningsDavid Robillard1-1/+1
2022-08-31Adopt REUSE machine-readable licensing standardDavid Robillard1-15/+2
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