memxor.h 119 B

1234567
  1. #ifndef MEMXOR_H_
  2. #define MEMXOR_H_
  3. #include <stdint.h>
  4. void memxor(void* dest, const void* src, uint16_t n);
  5. #endif