string.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef _WAMR_LIBC_STRING_H
  17. #define _WAMR_LIBC_STRING_H
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. typedef unsigned int size_t;
  22. int memcmp(const void *s1, const void *s2, size_t n);
  23. void *memcpy(void *dest, const void *src, size_t n);
  24. void *memmove(void *dest, const void *src, size_t n);
  25. void *memset(void *s, int c, size_t n);
  26. char *strchr(const char *s, int c);
  27. int strcmp(const char *s1, const char *s2);
  28. char *strcpy(char *dest, const char *src);
  29. size_t strlen(const char *s);
  30. int strncmp(const char * str1, const char * str2, size_t n);
  31. char *strncpy(char *dest, const char *src, unsigned long n);
  32. char * strdup(const char *s);
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36. #endif