string.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 2012-2017 Richard Braun.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef KERN_STRING_H
  18. #define KERN_STRING_H
  19. #include <stddef.h>
  20. void* memcpy (void *restrict dest, const void * restrict src, size_t n);
  21. void* memmove (void *dest, const void *src, size_t n);
  22. void* memset (void *s, int c, size_t n);
  23. int memcmp (const void *s1, const void *s2, size_t n);
  24. void* memchr (const void *s, int c, size_t n);
  25. size_t strlen (const char *s);
  26. char* strcpy (char * restrict dest, const char *restrict src);
  27. size_t strlcpy (char * restrict dest, const char * restrict src, size_t n);
  28. int strcmp (const char *s1, const char *s2);
  29. int strncmp (const char *s1, const char *s2, size_t n);
  30. char* strchr (const char *s, int c);
  31. const char* strerror (int error);
  32. #endif /* KERN_STRING_H */