arcmwdt-string.c 259 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021 Synopsys.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #define __STDC_WANT_LIB_EXT1__ 1
  7. #include <string.h>
  8. #include <stdint.h>
  9. #include <sys/types.h>
  10. size_t strnlen(const char *s, size_t maxlen)
  11. {
  12. return strnlen_s(s, maxlen);
  13. }