Subversion Repositories Kolibri OS

Rev

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

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