aboutsummaryrefslogtreecommitdiffhomepage
path: root/wcstringutil.h
Commit message (Collapse)AuthorAge
* Migrate source files into src/ directoryGravatar ridiculousfish2015-07-24
| | | | | | | | This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866
* Implement new `read --null` flagGravatar Kevin Ballard2014-09-21
The `--null` flag to `read` makes it split incoming lines on NUL instead of newlines. This is intended for processing the output of a command that uses NUL separators (such as `find -print0`). Fixes #1694.