Subversion Repositories Kolibri OS

Rev

Rev 1005 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. #ifndef AUTOBUILD
  3. #define NULL ((void*)0)
  4.  
  5. void*  memset(void *mem, int c, unsigned size);
  6. void* memcpy(void *dst, const void *src, unsigned size);
  7. int strlen(const char* string);
  8. #endif
  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. char *strchr(const char* string, int c);
  15.