#include <mem.h>
Go to the source code of this file.
Functions | |
| void * | memcpy (void *dest, const void *src, size_t size) |
| copy memory block from src to dest. | |
| void * | memset (void *s, int c, size_t n) |
| fill memory block with a byte value. | |
| char * | strcpy (char *dest, const char *src) |
| Copy null-terminated string from src to dest. | |
| int | strlen (const char *s) |
| Determine string length. | |
| int | strcmp (const char *s1, const char *s2) |
| Compare two strings. | |
Definition in file string.h.
|
||||||||||||||||
|
copy memory block from src to dest.
|
|
||||||||||||||||
|
fill memory block with a byte value.
Definition at line 40 of file memset.c. References __asm__(). Referenced by kmain(), lcd_init(), rcx_init(), rcxInit(), and srec_load(). |
|
||||||||||||
|
Compare two strings.
Definition at line 31 of file strcmp.c. Referenced by lx_read(), main(), read_symbols(), and symbols_load(). |
|
||||||||||||
|
Copy null-terminated string from src to dest.
|
|
|
Determine string length.
Definition at line 31 of file strlen.c. Referenced by main(). |
1.3.9.1