summaryrefslogtreecommitdiffstats
path: root/usr.bin/csplit/csplit.c
Commit message (Collapse)AuthorAgeFilesLines
* Add missing static keywords to csplit(1)ed2011-11-061-30/+30
|
* Use fseeko() to properly support large files.tjr2004-03-221-3/+3
|
* Use errc().tjr2004-03-221-4/+2
|
* The return value of snprintf should be always nonnegative, so it shoulddwmalone2002-07-281-1/+1
| | | | be safe to cast it to a size_t before comparing it to a sizeof().
* Use sigaction(2) instead of signal(3) to avoid the signal handler beingtjr2002-07-261-3/+10
| | | | re-entered.
* Avoid truncating filenames with snprintf().tjr2002-06-291-2/+5
|
* Respect LC_CTYPE and LC_COLLATE environment variables, mainly for theirtjr2002-06-071-0/+3
| | | | | effects on regular expressions. The libc regex code does not handle equivalence classes well (for example), but we do our best.
* Handle the case where a negative offset in a regular expression matchtjr2002-05-161-0/+2
| | | | is larger than the number of lines in the overflow file.
* Correct synopsis and usage(): pattern arguments are not optional.tjr2002-05-161-1/+1
|
* Add the csplit(1) utility, which splits files based on context, as specifiedtjr2002-05-021-0/+454
by SUSv3. PR: 36191 Reviewed by: mike
OpenPOWER on IntegriCloud