Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1.  
  2. #ifndef NULL
  3. #define NULL ((void*)0)
  4. #endif
  5.  
  6. void*  memset(void *mem, int c, unsigned size);
  7. void* memcpy(void *dst, const void *src, unsigned size);
  8. int memcmp(const void* buf1, const void* buf2, int count);
  9.  
  10. void strcat(char strDest[], char strSource[]);
  11. int strcmp(const char* string1, const char* string2);
  12. void strcpy(char strDest[], const char strSource[]);
  13. char* strncpy(char *strDest, const char *strSource, unsigned n);
  14. int strlen(const char* string);
  15. char *strchr(const char* string, int c);
  16. void _itoa(int i, char *s);
  17.