/* memxor.c * * $Id: memxor.c,v 1.4 2005/07/02 16:55:38 nisse Exp $ */ /* XOR LEN bytes starting at SRCADDR onto DESTADDR. Result undefined if the source overlaps with the destination. Return DESTADDR. */ #if HAVE_CONFIG_H # include "config.h" #endif #include "memxor.h" uint8_t * memxor(uint8_t *dst, const uint8_t *src, size_t n) { size_t i; for (i = 0; i