matter.c

Cross-platform minimalist libc
git clone git://git.finwo.net/lib/matter.c
Log | Files | Refs | README | LICENSE

string.h (289B)


      1 #ifndef _STRING_H_
      2 #define _STRING_H_
      3 
      4 #include <stddef.h>
      5 
      6 int memcmp (const void *str1, const void *str2, int count);
      7 void *memcpy (void *dest, const void *src, size_t len);
      8 void *memset (void *dest, int val, size_t len);
      9 static unsigned int strlen(const char *s);
     10 
     11 #endif // _STRING_H_