Subversion Repositories Kolibri OS

Rev

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

  1.  
  2. unsigned int strlen(const char *str);
  3. char *strcpy(char *dest, const char *src);
  4. void *memcpy(void *dest, const void *src, unsigned int n);
  5. void *memset(void *s, char c, unsigned int n);
  6. int strcmp(const char *str1, const char *str2);
  7. char *strchr(const char *str, int ch);
  8. char *strstr(const char *str1, const char *str2);
  9.  
  10. double floor(double x);
  11. const char *DoubleToStr(double x, unsigned short digits = 5, bool crop_0 = false);
  12. double StrToDouble(char *str);
  13. long StrToInt(char *str);
  14.