Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / nettle / memxor.h
blobc9e563d496be73fa5a5622f4aaf15cb2cfab0be7
1 /* memxor.h
3 */
5 #ifndef NETTLE_MEMXOR_H_INCLUDED
6 #define NETTLE_MEMXOR_H_INCLUDED
8 #include <stdlib.h>
9 #include "nettle-types.h"
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
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, const uint8_t *b, size_t n);
18 #ifdef __cplusplus
20 #endif
22 #endif /* NETTLE_MEMXOR_H_INCLUDED */