aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/lgl/memxor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/https/lgl/memxor.h')
-rw-r--r--src/daemon/https/lgl/memxor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/daemon/https/lgl/memxor.h b/src/daemon/https/lgl/memxor.h
index 4f85f2d7..47e6b3fa 100644
--- a/src/daemon/https/lgl/memxor.h
+++ b/src/daemon/https/lgl/memxor.h
@@ -1,4 +1,4 @@
1/* memxor.h -- perform binary exclusive OR operation on memory blocks. 1/* MHD_memxor.h -- perform binary exclusive OR operation on memory blocks.
2 Copyright (C) 2005 Free Software Foundation, Inc. 2 Copyright (C) 2005 Free Software Foundation, Inc.
3 3
4 This program is free software; you can redistribute it and/or modify 4 This program is free software; you can redistribute it and/or modify
@@ -15,7 +15,7 @@
15 along with this program; if not, write to the Free Software Foundation, 15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
17 17
18/* Written by Simon Josefsson. The interface was inspired by memxor 18/* Written by Simon Josefsson. The interface was inspired by MHD_memxor
19 in Niels Möller's Nettle. */ 19 in Niels Möller's Nettle. */
20 20
21#ifndef MEMXOR_H 21#ifndef MEMXOR_H
@@ -26,6 +26,6 @@
26/* Compute binary exclusive OR of memory areas DEST and SRC, putting 26/* Compute binary exclusive OR of memory areas DEST and SRC, putting
27 the result in DEST, of length N bytes. Returns a pointer to 27 the result in DEST, of length N bytes. Returns a pointer to
28 DEST. */ 28 DEST. */
29void *memxor (void *restrict dest, const void *restrict src, size_t n); 29void *MHD_memxor (void *restrict dest, const void *restrict src, size_t n);
30 30
31#endif /* MEMXOR_H */ 31#endif /* MEMXOR_H */