Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. #define NULL ((void*)0)
  3.  
  4. void*  memset(void *mem, int c, unsigned size);
  5. void* memcpy(void *dst, const void *src, unsigned size);
  6.  
  7. void strcat(char strDest[], char strSource[]);
  8. int strcmp(const char* string1, const char* string2);
  9. //void strcpy(char strDest[], const char strSource[]);
  10. char* strncpy(char *strDest, const char *strSource, unsigned n);
  11. int strlen(const char* string);
  12. char *strchr(const char* string, int c);
  13.