diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-11-25 11:47:49 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-11-25 11:47:49 +0100 |
commit | a99a66b75d866cf1cf9fb26f22330a981252afa7 (patch) | |
tree | bffa104c3d56c72a1245cfa6fab30b35f6587d5e /include | |
parent | tell in doc in which version things were introduced (diff) | |
download | slibc-a99a66b75d866cf1cf9fb26f22330a981252afa7.tar.gz slibc-a99a66b75d866cf1cf9fb26f22330a981252afa7.tar.bz2 slibc-a99a66b75d866cf1cf9fb26f22330a981252afa7.tar.xz |
m etymology
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/strings.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/strings.h b/include/strings.h index 31bb5a7..fdf6605 100644 --- a/include/strings.h +++ b/include/strings.h @@ -31,7 +31,7 @@ /** * Override a memory segment with zeroes. * - * @etymology (B)uffer: (zero) out. + * @etymology (B)ytes: (zero) out. * * @param segment The memory segment to override. * @param size The size of the memory segment. @@ -61,7 +61,7 @@ void explicit_bzero(void*, size_t); /** * Copy a memory segment to another, possibly overlapping, segment. * - * @etymology (B)uffer: (copy). + * @etymology (B)ytes: (copy). * * @param whence The source memory segment. * @param whither The destination memory segment. @@ -75,7 +75,7 @@ void bcopy(const void*, void*, size_t) /** * This function is identical to `memcmp`. * - * @etymology (B)uffer: (c)o(mp)are. + * @etymology (B)ytes: (c)o(mp)are. * * @since Always. */ |