Age | Commit message (Expand) | Author |
2018-03-31 | Remove semicolon from WOULD_EXIT() macro (screws up if statement levels). | Rob Landley |
2018-03-10 | Split "comma separated values" parsing from mntent.h plumbing. | Rob Landley |
2018-03-10 | Add a way for commands to distinguish "ps -ax" from "ps ax". | Rob Landley |
2018-01-30 | Basic ping support. | Rob Landley |
2018-01-14 | Switch xgettty() -> tty_fd() (returning -1 instead of erroring out if none). | Rob Landley |
2018-01-06 | Move millitime() into lib.c. | Rob Landley |
2017-10-10 | Complete rewrite of cut. Handle multipe ranges, add -DFO options, start | Rob Landley |
2017-10-01 | Fix xargs to obey POSIX's ARG_MAX restrictions. | Elliott Hughes |
2017-09-09 | Last commit used xstrtod(), forgot to check it in. | Rob Landley |
2017-09-02 | utf8towc() has to be in lib.c if strlower() is going to use it, because | Rob Landley |
2017-09-02 | In wc, replace mbrtowc() with new utf8towc() which doesn't have a context struct | Rob Landley |
2017-07-17 | Split out xgetaddrinfo() from xconnect() | Rob Landley |
2017-05-24 | Add and use xmmap. | Elliott Hughes |
2017-05-23 | Add minof/maxof macros that autodetect type. Make xzcat use them. | Rob Landley |
2017-05-21 | Cleaup chrt | Rob Landley |
2017-05-08 | Move strend() to lib/lib.c | Rob Landley |
2017-02-04 | Posix says stdio.h should define 'stdout' as a macro, and bionic turns it into | Rob Landley |
2017-02-04 | Switch oneit to use xopen_stdio() for -c (oops) and switch XVFORK() to use | Rob Landley |
2017-01-04 | Some lib fixes: mark xvfork() noinline, make xsendfile() return bytes copied, | Rob Landley |
2016-12-08 | Add DIRTREE_PROC to skip non-numeric entries and make ps/top etc use it. | Rob Landley |
2016-11-21 | Have dirtree_notdotdot() pass through !node->parent so . and .. on the command | Rob Landley |
2016-10-11 | Make netcat work with nommu and factor out poll() loop into net/net.c. | Rob Landley |
2016-09-05 | Replace loopfiles' failok with WARN_ONLY open flag. | Rob Landley |
2016-09-05 | Export notstdio() wrapper. | Rob Landley |
2016-09-04 | Add openro() and WARN_ONLY flag so xopen() and friends can warn without exiting. | Rob Landley |
2016-09-03 | Move genericish function to lib. | Rob Landley |
2016-08-18 | Change xgetpwnamid/xgetgrnamid to xgetuid/xgetgid returning the id number | Rob Landley |
2016-08-13 | Move getusername/getgroupname to lib. (Return name or string representation | Rob Landley |
2016-08-04 | Make xopen() skip stdin/stdout/stderr, add xopen_stdio() if you want stdout, | Rob Landley |
2016-07-26 | Move regexec0 into lib (regexec that takes length and matches after NUL). | Rob Landley |
2016-07-12 | Convert atolx() and friends to use long long internally. Update design.html | Rob Landley |
2016-07-08 | dd improvements. | Elliott Hughes |
2016-06-19 | Last commit depends on new lib code I forgot to check in. (Oops.) | Rob Landley |
2016-06-15 | Add readlink0() and readlinkat0() which null terminate the data. | Rob Landley |
2016-05-20 | Add bufgetgrgid() | Rob Landley |
2016-05-17 | Add bufgetpwuid. (Repeated calls to getpwuid() are really expensive.) | Rob Landley |
2016-04-21 | Have dirtree_recurse() take the new dirfd as an argument. | Rob Landley |
2016-04-08 | Redefining basename_r to mean something random seems popular (bionic and freebsd | Rob Landley |
2016-03-29 | Fix build when wchar_t is unsigned. | Elliott Hughes |
2016-03-15 | Add ls -b and make ls -q work with utf8. | Rob Landley |
2016-03-13 | Split out _xexit() from xexit() and give sigatexit() multiple callbacks. | Rob Landley |
2016-03-07 | Cleanup pass on the dirtree infrastructure, in preparation for making rm -r | Rob Landley |
2016-03-02 | For years the man pages have said to #include <sys/types.h> to get | Rob Landley |
2016-02-10 | Factor out strnstr() since posix hasn't got it, and add a config option for | Rob Landley |
2016-02-09 | Fix xpipe. (thinko.) | Rob Landley |
2016-02-08 | Add xpipe() to lib. | Rob Landley |
2016-01-28 | Bugfix I forgot to checkin, plus a wrapper function. | Rob Landley |
2016-01-22 | Factor out insanitize() from seq.c to next_printf() in lib. | Rob Landley |
2016-01-17 | Extend utf8 fontmetrics so ps can use them. | Rob Landley |
2016-01-17 | Update draw_str() and friends to do standard escaping for ^X <AB> U+ABCD. | Rob Landley |