Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-12-13 | base64: silence compiler warning by using correct type | 1 | -1/+2 | ||
2013-11-12 | base64: get rid of strtok_r and use strspn+strcspn instead | 1 | -13/+14 | ||
strtok_r is not available on win32 and the designated strtok_s function is reported to not work on windows xp. Hence we use an easier an non-destructive implementation with strspn and strcspn to strip out the whitespace. | |||||
2013-11-12 | base64: fix compilation with win32 | 1 | -0/+4 | ||
this is a temporary fix, we'll replace strtok_r with a custom implementation soon. | |||||
2013-10-09 | base64: use strtok_r instead of strtok to make sure we're thread safe | 1 | -2/+3 | ||
2012-01-12 | fix compiler warnings | 1 | -3/+3 | ||
2011-06-01 | Fix base64 encoding | 1 | -8/+6 | ||
2011-05-29 | use signed char instead of int8_t | 1 | -1/+1 | ||
2011-05-27 | Make libplist glib free | 1 | -0/+127 | ||