Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clean up memchr slightly to better match coming memrchr | 1999-11-14 | 1 | -4/+4 | |
| | | | | (K&R-style type promotions are evil), | ||||
* | Install man-page links for strtok_r. | 1999-11-09 | 1 | -1/+2 | |
| | |||||
* | Document strtok_r. | 1999-11-09 | 1 | -8/+19 | |
| | |||||
* | Implement strtok_r. | 1999-11-09 | 1 | -5/+15 | |
| | |||||
* | index/rindex as deprecated synonyms to strchr/strrchr. | 1999-09-21 | 11 | -193/+39 | |
| | |||||
* | Using .Li inside a .Bd -literal block messes up the fonts thereafter; | 1999-09-04 | 1 | -4/+4 | |
| | | | | .Li ... -> \&... | ||||
* | better wording | 1999-07-04 | 1 | -3/+3 | |
| | |||||
* | whoops, fix a bug in my example :) | 1999-07-03 | 1 | -2/+2 | |
| | |||||
* | add an example | 1999-07-03 | 1 | -3/+38 | |
| | |||||
* | repairs | 1999-06-29 | 11 | -33/+41 | |
| | |||||
* | new mdoc bm(3) man page | 1999-06-29 | 1 | -53/+54 | |
| | |||||
* | When finding the end of dst, never traverse more than siz bytes. This | 1999-06-17 | 1 | -5/+5 | |
| | | | | | | keeps us from misbehaving if the user gives us a src string that is not NUL-terminated. This is one of those "should not happen" cases but it is good to play it safe. Pointed out by Casper Dik <casper@holland.sun.com> | ||||
* | some NAME section cleanup | 1999-06-06 | 6 | -14/+14 | |
| | |||||
* | Grammatical, spelling, and format fixes | 1999-06-06 | 3 | -6/+6 | |
| | |||||
* | some repairs, add example to strdup(3) page | 1999-06-04 | 7 | -31/+44 | |
| | |||||
* | add examples | 1999-06-04 | 2 | -23/+40 | |
| | |||||
* | add an example, similar to the one in strspn.3 | 1999-06-04 | 1 | -1/+15 | |
| | |||||
* | add an example; pattonme@ns.ra.pae.osd.mil | 1999-06-04 | 1 | -1/+15 | |
| | |||||
* | "SEE ALSO" -> SEE ALSO, missed these files before | 1999-05-28 | 1 | -2/+2 | |
| | |||||
* | remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-common | 1999-05-23 | 8 | -16/+16 | |
| | | | | is used instead; kwesterback@home.com | ||||
* | o Mention strlcpy and strlcat | 1999-05-17 | 1 | -3/+10 | |
| | | | | o strsep is not in ANSI X3.159-1989 (though it is in C9X) | ||||
* | Cleanup xrefs under SEE ALSO. Specifically: | 1999-05-16 | 2 | -10/+10 | |
| | | | | | | | - Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries. | ||||
* | Break up into two loops, one for the copy, another to finish traversal | 1999-05-01 | 1 | -13/+17 | |
| | | | | of the src string if len(src) >= size. Speeds up the common case a bit. | ||||
* | m68k assembler version of strlcpy(3) | 1999-04-25 | 1 | -3/+3 | |
| | |||||
* | simplified version that doesn't call strlen and that is simpler to convert to assembler (both for gcc and me) | 1999-04-24 | 1 | -7/+8 | |
| | |||||
* | add examples | 1999-03-06 | 1 | -1/+40 | |
| | |||||
* | typo | 1999-03-06 | 1 | -3/+3 | |
| | |||||
* | better examples section wrt strncpy() | 1999-03-05 | 1 | -3/+35 | |
| | |||||
* | .Xr strlcat, strlcpy | 1998-11-28 | 2 | -4/+7 | |
| | |||||
* | Add thread-safety to libc, so that libc_r will build (on i386 at least). | 1998-11-20 | 1 | -7/+7 | |
| | | | | | | | | | | | | | All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO | ||||
* | Fix `typo', proves that strlcpy/strlcat is a very good idea. | 1998-11-11 | 1 | -2/+9 | |
| | |||||
* | add missing const to match prototype in string.h | 1998-11-06 | 1 | -3/+3 | |
| | |||||
* | More man page fixes. Spelling, grammar, some typos. Lots of double-word | 1998-09-06 | 1 | -2/+2 | |
| | | | | occurrences squashed as well. | ||||
* | commas | 1998-08-19 | 1 | -4/+4 | |
| | |||||
* | strlxx() return size_t not char * | 1998-07-06 | 1 | -3/+3 | |
| | |||||
* | add strlcpy/strlcat, safe and sensible string copy/append | 1998-07-01 | 4 | -3/+278 | |
| | |||||
* | use Bx macro for BSD versions | 1998-06-15 | 5 | -10/+15 | |
| | |||||
* | s/NULL/NUL/ | 1998-05-04 | 1 | -2/+2 | |
| | |||||
* | use Xr more often | 1998-04-28 | 1 | -2/+3 | |
| | |||||
* | move proto to unistd.h | 1998-02-10 | 2 | -4/+4 | |
| | |||||
* | strftime is no longer in this directory | 1998-02-07 | 1 | -3/+3 | |
| | |||||
* | use tzcode strftime(3) as it is kept up to date. | 1998-01-19 | 2 | -528/+0 | |
| | |||||
* | correct description | 1997-12-30 | 2 | -5/+5 | |
| | |||||
* | NUL not NULL | 1997-12-29 | 1 | -2/+2 | |
| | |||||
* | doc RETURNS; cato@ulysses.df.lth.se | 1997-08-24 | 1 | -1/+7 | |
| | |||||
* | Update from lite2. | 1997-08-20 | 2 | -36/+61 | |
| | |||||
* | Update man page and sccs tags from lite2. Minor cleanup by me as well. | 1997-08-20 | 2 | -18/+30 | |
| | |||||
* | Update man page and sccs tags from lite2. | 1997-08-20 | 4 | -20/+35 | |
| | |||||
* | Update from lite2 version and fix grammatical error from | 1997-08-20 | 1 | -13/+14 | |
| | | | | Krister Walfridsson <cato@ulysses.df.lth.se>. | ||||
* | #if __STDC__ --> #ifdef __STDC__ | 1997-07-25 | 1 | -2/+2 | |
| |