Functions | |||
![]() | ![]() | void* | memcpy (void *dest, const void *src, size_t size) |
![]() | ![]() | copy memory block from src to dest. More... | |
![]() | ![]() | void* | memset (void *s, int c, size_t n) |
![]() | ![]() | fill memory block with a byte value. More... | |
![]() | ![]() | char* | strcpy (char *dest, const char *src) |
![]() | ![]() | Copy null-terminated string from src to dest. More... | |
![]() | ![]() | int | strlen (const char *s) |
![]() | ![]() | Determine string length. More... | |
![]() | ![]() | int | strcmp (const char *s1, const char *s2) |
![]() | ![]() | Compare two strings. More... | |
| void * memcpy (void * dest, const void * src, size_t size) |
copy memory block from src to dest.
| dest | destination |
| src | source |
| size |
number of bytes to copy
|
| void * memset (void * s, int c, size_t n) |
fill memory block with a byte value.
| s | start |
| c | byte fill value |
| n | number of bytes to fill |
| char * strcpy (char * dest, const char * src) |
Copy null-terminated string from src to dest.
| src | source |
| dest | destination |
| int strlen (const char * s) |
Determine string length.
| s | string |
| s2 | second string |
| int strcmp (const char * s1, const char * s2) |
Compare two strings.
| s1 | first string |
| s2 | second string |
-0.1.7 is released under
Mozilla Public License.
Original code © 1998-1999 by Markus L. Noga.