Age | Commit message (Expand) | Author |
2013-06-05 | Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze | Ted Unangst |
2013-06-04 | remove some incredible lies about overlapping buffers | Theo de Raadt |
2013-06-01 | Fix catopen(3) for UTF-8 locales and update the implementation to POSIX-2008. | Stefan Sperling |
2013-05-30 | Remove useless include. | Antoine Jacoutot |
2013-05-15 | typo: compare len against null needle, not haystack | Antoine Jacoutot |
2013-05-13 | Add an implementation of memmem() -- from FreeBSD with some tweaks. | Antoine Jacoutot |
2012-08-02 | remove leftover NOLINT, WANTLINT, LINTFLAGS, LOBJ vars and lint targets. | Okan Demirmen |
2012-07-11 | fix an off-by-one error where the return value would point to the | Christian Weisgerber |
2012-04-26 | Add strnlen() to libkern. | Matthew Dempsky |
2012-04-03 | tweak previous; | Jason McIntyre |
2012-04-02 | simplify the strlcpy/strlcat manual page substantially. do less | Theo de Raadt |
2012-03-26 | Bump standards years, as we conform to the new versions too | Philip Guenthe |
2012-03-26 | strsignal() was standardized in POSIX-2008 | Philip Guenthe |
2012-01-17 | fix SEE ALSO; | Jason McIntyre |
2012-01-17 | Add stpcpy() and stpncpy(), pointless crap that made it into POSIX. | Philip Guenthe |
2012-01-14 | grammar; | Jason McIntyre |
2012-01-14 | this is sparta^WPOSIX 2008 | Marc Espie |
2011-12-08 | strdup and strndup both use malloc. Make this fact explicit. | lum |
2011-07-25 | tweak previous; | Jason McIntyre |
2011-07-25 | update HISTORY and SEE ALSO for all of string(3), together with various | Ingo Schwarze |
2011-07-24 | Sync wcslcpy and wcslcat with strlcpy and strlcat. OK deraadt@ | Todd C. Miller |
2011-07-09 | Minor function name tweaks. | Nicholas Marriott |
2011-07-09 | Instead of documenting all the wide string functions in wmemchr(3), add | Nicholas Marriott |
2011-07-08 | After a certain amount of fighting with the mbstowcs API, remove L from | Nicholas Marriott |
2011-07-05 | Fix some awful code in the example, pointed out by millert@. | Nicholas Marriott |
2011-07-04 | Add wcsdup(), from NetBSD. | Nicholas Marriott |
2011-06-01 | fix wcscasecmp() parameters; <wchar.h> was correct | Christian Weisgerber |
2011-05-28 | tweak previous (my fault); | Jason McIntyre |
2011-05-28 | wcs(n)casecmp support, manpage comments from jmc@, okay deraadt@ | Marc Espie |
2011-04-04 | Add a wcswidth man page (based on FreeBSD), and fix the implementation | Stefan Sperling |
2010-09-24 | Add timingsafe_bcmp(3) to libc, mention that it's already in the | Matthew Dempsky |
2010-09-10 | observe the following spelling: | Jason McIntyre |
2010-06-02 | Avoid using and end pointer since strnlen(string, -1) is legal | Todd C. Miller |
2010-05-24 | Add HISTORY section, mostly for strnlen() but include strlen() for | Todd C. Miller |
2010-05-21 | remove unused variable. | Charles Longeau |
2010-05-19 | tweak previous; | Jason McIntyre |
2010-05-18 | add posix_madvise, posix_memalign, strndup, and strnlen. mostly from | Ted Unangst |
2010-03-24 | Modify example not to use an assignment in the if statement. We shouldn't | Mark Kettenis |
2010-02-03 | Use MACHINE_CPU instead of MACHINE_ARCH to pick the correct machine dependent | Miod Vallat |
2009-12-05 | missing word; | Jason McIntyre |
2008-08-23 | unbreak wcschr(string, L'\0') which was incorrectly returning NULL | Damien Miller |
2008-03-19 | bcmp(3) tries to return length, which is a size_t, as an int. | Ray Lai |
2008-03-15 | - len is size_t, but n uses len and is an int. Matching those types | Ray Lai |
2008-03-15 | Convert c to unsigned char, like it says in the manual. Also add | Ray Lai |
2007-11-27 | typos; ok jmc@ | Martynas Venckus |
2007-10-25 | Make sure to use unique target names so that make -j does not break; | Miod Vallat |
2007-09-19 | add HISTORY; shortened version of diff from Ilya A. Kovalenko | Jason McIntyre |
2007-09-03 | remove trailing whitespace; | Jason McIntyre |
2007-09-03 | add memrchr(3) | Todd C. Miller |
2007-09-02 | use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsg | Theo de Raadt |