Sync with trunk revision 64099.
[reactos.git] / include / reactos / libs / gnutls / nettle / memxor.h
1 /* memxor.h
2 *
3 */
4
5 #ifndef NETTLE_MEMXOR_H_INCLUDED
6 #define NETTLE_MEMXOR_H_INCLUDED
7
8 #include <stdlib.h>
9 #include "nettle-types.h"
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 uint8_t *memxor(uint8_t * dst, const uint8_t * src, size_t n);
16 uint8_t *memxor3(uint8_t * dst, const uint8_t * a,
17 const uint8_t * b, size_t n);
18
19 #ifdef __cplusplus
20 }
21 #endif
22 #endif /* NETTLE_MEMXOR_H_INCLUDED */