Line 53... |
Line 53... |
int strcmp(const char *string1, const char *string2);
|
int strcmp(const char *string1, const char *string2);
|
int strncmp(const char *string1, const char *string2, int count);
|
int strncmp(const char *string1, const char *string2, int count);
|
char *strstr(char *string, char *find);
|
char *strstr(char *string, char *find);
|
int strlen(const char *string);
|
int strlen(const char *string);
|
void *memcpy(void *dst, const void *src, unsigned long bytes);
|
void *memcpy(void *dst, const void *src, unsigned long bytes);
|
|
void *memmove(void *dst, const void *src, unsigned long bytes);
|
int memcmp(const void *cs, const void *ct, unsigned long bytes);
|
int memcmp(const void *cs, const void *ct, unsigned long bytes);
|
void *memset(void *dst, int c, unsigned long bytes);
|
void *memset(void *dst, int c, unsigned long bytes);
|
int abs(int n);
|
int abs(int n);
|
int rand(void);
|
unsigned int rand(void);
|
void srand(unsigned int seed);
|
void srand(unsigned int seed);
|
long strtol(const char *s, const char **end, int base);
|
long strtol(const char *s, const char **end, int base);
|
int atoi(const char *s);
|
int atoi(const char *s);
|
void itoa(char *dst, int num, int base, int width);
|
void itoa(char *dst, int num, int base, int width);
|
#ifndef NO_ELLIPSIS
|
#ifndef NO_ELLIPSIS
|