Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

string.h (289B)


      1 #pragma once
      2 
      3 #include "../stdint.h"
      4 #ifndef _STRING_H
      5 #define _STRING_H
      6 
      7 void *memmove (void *dest, const void *src, size_t n);
      8 int memcmp (const void *s1, const void *s2, size_t n);
      9 void *memcpy (void *dest, const void *src, size_t n);
     10 void *memset (void *ptr, int x, size_t n);
     11 
     12 #endif