diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 15:29:55 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 15:29:55 -0500 |
| commit | 9b6f6642ee252a9bedbe267fd85376fc9359c74f (patch) | |
| tree | 5676ac47d416ef56b8134d94df49110abc53998f /src/string/memset_s.c | |
| parent | 7f9129145f2293cb8c9052ff1f395226421b0ae4 (diff) | |
update standard and safety checks
Diffstat (limited to 'src/string/memset_s.c')
| -rw-r--r-- | src/string/memset_s.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/string/memset_s.c b/src/string/memset_s.c index 2784a7c9..0708f338 100644 --- a/src/string/memset_s.c +++ b/src/string/memset_s.c @@ -1,21 +1,20 @@ -#if 0 - #include <string.h> +#include "_safety.h" /** fill memory **/ errno_t memset_s(void *s, rsize_t smax, int c, rsize_t n) { - __C_EXT(1, 201112L); - __ASSERT_NONNULL(s); + SIGNAL_SAFE(0); + ASSERT_NONNULL(s); unsigned char *_s = (unsigned char *)s; - int i = 0; + rsize_t i = 0; - while (i < n) { + while (i < n && i < smax) { _s[i] = (unsigned char)c; } - return s; + return 0; } /*** @@ -33,6 +32,3 @@ the value arg(c) (converted to an type(unsigned char)). /* CEXT1(201112) */ - - -#endif |
