aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make buffer and size static to avoid memory leakCasper Andersson 2022-10-011-2/+2
| | | | | | | getline() allocates/reallocates memory dynamically. When center() is called repeatedly it would leak memory. Make them static so the same memory is reallocated all the time, and none is lost. No need to free manually, let the OS take care of that.
* Properly terminate the listThomas Voss 2022-10-011-0/+1
|
* Update my email-addressThomas Voss 2022-10-011-1/+1
|
* Fix centering with ANSI escapesThomas Voss 2022-09-231-1/+1
| | | | | | This was broken with the logic change in #68f7fb9 I think. At the very least it’s that commit after which I noticed this bug. Doesn’t matter though, it’s fixed now.
* Enable warningsThomas Voss 2022-09-231-1/+1
|
* Add a target variableThomas Voss 2022-09-231-5/+7
|
* Fix text centering of multibyte charactersThomas Voss 2022-09-231-2/+7
|
* Add license textThomas Voss 2022-09-202-0/+31
|
* Use unicode box charactersThomas Voss 2022-09-201-33/+33
|
* Add a READMEThomas Voss 2022-09-201-0/+13
|
* Add a TODO fileThomas Voss 2022-09-201-0/+70
| | | | | | With Hacktoberfest coming up, a TODO will allow potential new people to find issues to work on. GitHub issues could be used, but the main repo is not on GitHub so no thanks.
* Fix usage stringThomas Voss 2022-08-091-1/+1
|
* Fix usage example in manual pageThomas Voss 2022-02-101-2/+2
| | | | | | The example is supposed to center the input as if the output device is a terminal with a width of 80 characters. The example doesn't use the `-w' flag though, so we set that up.
* Don't exit when fopen(3) returns NULLThomas Voss 2022-02-081-4/+7
| | | | | | | | On failure to open a file the program should print a diagnostic message to the standard error and move on to the next file as opposed to exiting immediately. This allows for consistent behavior compared to other common implementations of utilities such as cat(1) which reduces potential confusion for the user.
* Initial commitThomas Voss 2022-02-085-0/+275
This initial commit includes the following: - A gitignore file - A license (0-Clause BSD) - A Makefile supporting installation - A manual page written in mdoc(7) - A fully working initial implementation