diff options
author | Leah Neukirchen <leah@vuxu.org> | 2021-11-05 18:56:18 +0100 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2021-11-05 18:56:18 +0100 |
commit | 512f6213133906fc73f5dd2865ae973e4412a1f6 (patch) | |
tree | dc441210146f19c894049c5dab04007be9dc420f /README | |
parent | 75ea20675d012e692996bc6beae9149b0deb08b0 (diff) | |
download | libste-512f6213133906fc73f5dd2865ae973e4412a1f6.tar.gz libste-512f6213133906fc73f5dd2865ae973e4412a1f6.tar.xz libste-512f6213133906fc73f5dd2865ae973e4412a1f6.zip |
consistent end argument name
Diffstat (limited to 'README')
-rw-r--r-- | README | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/README b/README index 26bf455..776eb20 100644 --- a/README +++ b/README @@ -10,7 +10,7 @@ SYNOPSIS stecpy(char *dst, char *end, const char *src); char * - stecpe(char *dst, char *dstend, const char *src, const char *srcend); + stecpe(char *dst, char *end, const char *src, const char *srcend); char * stechr(const char *src, const char *end, int c); @@ -27,7 +27,7 @@ DESCRIPTION truncation, end is returned. stecpe copies the string between src and srcend to dst, but writes no - characters beyond dstend. If any characters are copied, dst will be NUL- + characters beyond end. If any characters are copied, dst will be NUL- terminated and the return value is a pointer to the NUL byte. On truncation, end is returned. |