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. char* strrchr(const char* string, int c);
  17. void    _itoa(int i, char *s);
  18. void  reverse(char *s);
  19. void     itoa(int i, char *s);
  20. int     _atoi( char *s );
  21.