summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/l64a.c
Commit message (Collapse)AuthorAgeFilesLines
* MFC r300775:ed2016-06-251-22/+14
| | | | | | | | | | | | | Let l64a() properly null terminate its result. Though the buffer used by l64a() is initialized with null bytes, repetetive calls may end up having trailing garbage of previous invocations because we don't end up terminating the string. Instead of importing NetBSD's fix, use this opportunity to simplify this function dramatically, for example by just storing the Base64 character set in a string. There is also no need to do the bitmasking, as we can just use the proper integer type from <stdint.h>.
* Add a64l(), l64a(), and l64a_r() XSI extentions. These functions converttrhodes2005-12-241-0/+52
between a 32-bit integer and a radix-64 ASCII string. The l64a_r() function is a NetBSD addition. PR: 51209 (based on submission, but very different) Reviewed by: bde, ru
OpenPOWER on IntegriCloud