1
0
forked from bonsai/harakit

docs: formatting

This commit is contained in:
2024-06-04 16:11:33 -06:00
parent 896b251434
commit f4cad598c4
8 changed files with 57 additions and 44 deletions

View File

@@ -21,9 +21,19 @@ Check whether string arguments are the same.
.SH DIAGNOSTICS
The program will exit successfully if the strings are identical. Otherwise, it
exits with the value 1 if an earlier string has a greater byte value than a
later string (e.g. strcmp b a) and 255 if an earlier string has a lesser byte
value (e.g. strcmp a b).
will exit with an error code of 1 if a string passed has a lesser byte value
than one of the prior strings:
.RS
.R strcmp b a
.RE
and with an error code of 255 if it has a greater byte value than one of the
prior strings:
.RS
.R strcmp a b
.RE
When invoked incorrectly, a debug message will be printed and the program will
exit with the appropriate
@@ -44,7 +54,7 @@ been
This tool also handles integer comparisons and file scrutiny. These parts of its
functionality have been broken out into multiple utilities.
This programs functionality may be performed on a POSIX-compliant system with
This program\(cqs functionality may be performed on a POSIX-compliant system with
.BR test (1p).
.\"
.SH AUTHOR
@@ -55,7 +65,7 @@ Written by DTB
.\"
.SH COPYRIGHT
Copyright © 2023 DTB. License AGPLv3+: GNU AGPL version 3 or later
Copyright \(co 2023 DTB. License AGPLv3+: GNU AGPL version 3 or later
<https://gnu.org/licenses/gpl.html>.
.\"
.SH SEE ALSO