Alternatives to memmove, memcpy, and memset that are faster on AVR than standard avr-libc 1.8.
|
void * | memmove8 (void *dst, const void *src, uint16_t num) |
| Faster alternative to memmove() on AVR.
|
|
void * | memcpy8 (void *dst, const void *src, uint16_t num) |
| Faster alternative to memcpy() on AVR.
|
|
void * | memset8 (void *ptr, uint8_t value, uint16_t num) |
| Faster alternative to memset() on AVR.
|
|