Improve help files

Minor improvement of various help files.  Made format of help
files more consistent.
This commit is contained in:
Landon Curt Noll
2021-12-05 23:02:12 -08:00
parent de47c960d3
commit a28edba4e9
91 changed files with 284 additions and 275 deletions

View File

@@ -21,13 +21,13 @@ DESCRIPTION
new value.
EXAMPLE
strncpy("abcdef", "xyz", 0) == "abcdef"
strncpy("abcdef", "xyz", 1) == "xbcdef"
strncpy("abcdef", "xyz", 2) == "xycdef"
strncpy("abcdef", "xyz", 3) == "xyzdef"
strncpy("abcdef", "xyz", 4) == "xyz\0ef"
strncpy("abcdef", "xyz", 5) == "xyz\0\0f"
strncpy("ab", "xyz", 3) == "xy"
; strncpy("abcdef", "xyz", 0) == "abcdef"
; strncpy("abcdef", "xyz", 1) == "xbcdef"
; strncpy("abcdef", "xyz", 2) == "xycdef"
; strncpy("abcdef", "xyz", 3) == "xyzdef"
; strncpy("abcdef", "xyz", 4) == "xyz\0ef"
; strncpy("abcdef", "xyz", 5) == "xyz\0\0f"
; strncpy("ab", "xyz", 3) == "xy"
LIMITS
none