]> git.cryptolib.org Git - avr-crypto-lib.git/blob - memxor.h
d84f33559bcd07b7a7ed14a7f132d7fd1519d773
[avr-crypto-lib.git] / memxor.h
1 #ifndef MEMXOR_H_
2 #define MEMXOR_H_
3 #include <stdint.h>
4
5 void memxor(void * dest, const void * src, uint16_t n);
6
7 #endif