8 lines
119 B
C
8 lines
119 B
C
|
#ifndef MEMXOR_H_
|
||
|
#define MEMXOR_H_
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void memxor(void* dest, const void* src, uint16_t n);
|
||
|
|
||
|
#endif
|