summaryrefslogtreecommitdiff
path: root/libgcompat/wchar.c
AgeCommit message (Collapse)AuthorFilesLines
2021-09-22wchar: add __mbrlenptrcnull1-1/+6
2020-07-25wchar: implement wcstod_lMichal Kazior1-0/+10
This is similar to strtoll_l() in a way it ignores the locale_t argument and uses the global locale settings. Signed-off-by: Michal Kazior <kazikcz@gmail.com>
2020-07-25wchar: implement wcstol_lMichal Kazior1-0/+11
This is similar to strtoll_l() in a way it ignores the locale_t argument and uses the global locale settings. Signed-off-by: Michal Kazior <kazikcz@gmail.com>
2020-07-25wchar: implement wcstoul_lMichal Kazior1-0/+11
This is similar to strtoll_l() in a way it ignores the locale_t argument and uses the global locale settings. Signed-off-by: Michal Kazior <kazikcz@gmail.com>
2020-07-25wchar: implement __fwprintf_chkMichal Kazior1-0/+18
Signed-off-by: Michal Kazior <kazikcz@gmail.com>
2020-07-25wchar: implement __vfwprintf_chkMichal Kazior1-0/+13
Signed-off-by: Michal Kazior <kazikcz@gmail.com>
2019-05-08Don't use variables until ensuring they're non-NULLA. Wilcox1-1/+2
2019-05-07wchar: Add __wcscpy_chkA. Wilcox1-0/+21
2019-01-05run clang-format on the source codeSamuel Holland1-1/+1
Signed-off-by: Samuel Holland <samuel@sholland.org>
2018-11-12wchar: Implement __wcstol_internalA. Wilcox1-0/+12
2018-01-15stdio: Clean up, add all of LSB stdio plus moreSamuel Holland1-0/+40
* Add all (non-wchar) stdio functions from LSB, plus those found in use in other applications. Document those functions from LSB as such. * Use a consistent structure and paramater names for all functions. * flag == 0 means FORTIFY_SOURCE=1, so the implemented checks should be unconditional. * Add all possible checks without parsing the format string. * Move functions from wchar.h to their own appropriately-named file. Signed-off-by: Samuel Holland <samuel@sholland.org>