8 lines
172 B
C
8 lines
172 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _XOR_H
|
|
#define _XOR_H
|
|
|
|
void xor_gen(void *dest, void **srcs, unsigned int src_cnt, unsigned int bytes);
|
|
|
|
#endif /* _XOR_H */
|