.gitlab-ci.yml: Use ./bootstrap in gnutls build.
[gd/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
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 /* Name mangling */
15 #define memxor nettle_memxor
16 #define memxor3 nettle_memxor3
17
18 void *memxor(void *dst, const void *src, size_t n);
19 void *memxor3(void *dst, const void *a, const void *b, size_t n);
20
21 #ifdef __cplusplus
22 }
23 #endif
24
25 #endif /* NETTLE_MEMXOR_H_INCLUDED */