 |
Xyris
0.5
|
Go to the documentation of this file.
30 void strcpy(
char* destination,
const char* source);
39 void strncpy(
char* destination,
const char* source,
size_t len);
48 char*
strcat(
char* dest,
const char* src);
59 int strcmp(
const char *s1,
const char *s2);
68 const char*
strstr(
const char* haystack,
const char* needle);
84 void itoa(
int n,
char str[]);
94 void*
memset(
void* bufptr,
int value,
size_t num);
105 int memcmp(
const void* ptr1,
const void* ptr2,
size_t num);
115 void*
memmove(
void* destination,
const void* source,
size_t size);
125 void*
memcpy(
void* dstptr,
const void* srcptr,
size_t size);
void * memcpy(void *dstptr, const void *srcptr, size_t size)
void itoa(int n, char str[])
Converts an integer into its ASCII representation. (This does not have a standard,...
void strcpy(char *destination, const char *source)
Copys a string from the source to the destination.
int strlen(const char *s)
Returns the length of a string.
int memcmp(const void *ptr1, const void *ptr2, size_t num)
Compares a given number of bytes in memory at pointer A to pointer B.
void strncpy(char *destination, const char *source, size_t len)
Copys a string from the source to the destination.
void * memset(void *bufptr, int value, size_t num)
Sets the number of bytes in memory at ptr to the value.
const char * strstr(const char *haystack, const char *needle)
Locates a substring (needle) within a containing string (haystack)
int strcmp(const char *s1, const char *s2)
Compares two strings.
char * strcat(char *dest, const char *src)
Concatanates source onto destination.
void * memmove(void *destination, const void *source, size_t size)
Moves a given number of bytes from the source to the destination.
void reverse(char *s)
Reverses the inputted string.