Skip to content
Snippets Groups Projects
memxor.h 230 B
Newer Older
Niels Möller's avatar
Niels Möller committed
/* memxor.h
 *
 */

#ifndef NETTLE_MEMXOR_H_INCLUDED
#define NETTLE_MEMXOR_H_INCLUDED

Niels Möller's avatar
Niels Möller committed
#include <inttypes.h>
Niels Möller's avatar
Niels Möller committed
#include <stdlib.h>

uint8_t *memxor(uint8_t *dst, const uint8_t *src, size_t n);

#endif /* NETTLE_MEMXOR_H_INCLUDED */