Consistent #include guards
This commit is contained in:
parent
654a2b3f95
commit
c7b9178d5a
@ -11,8 +11,8 @@
|
||||
* <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||
*/
|
||||
|
||||
#ifndef ARGON2_CORE_H
|
||||
#define ARGON2_CORE_H
|
||||
#ifndef argon2_core_H
|
||||
#define argon2_core_H
|
||||
|
||||
#include "argon2.h"
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef ENCODING_H
|
||||
#define ENCODING_H
|
||||
#ifndef argon2_encoding_H
|
||||
#define argon2_encoding_H
|
||||
|
||||
#include "argon2.h"
|
||||
|
||||
int encode_string(char *dst, size_t dst_len, argon2_context *ctx,
|
||||
|
@ -11,8 +11,8 @@
|
||||
this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||
*/
|
||||
|
||||
#ifndef blake2_impl_H
|
||||
#define blake2_impl_H
|
||||
#ifndef argon2_impl_H
|
||||
#define argon2_impl_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
@ -10,8 +10,8 @@
|
||||
* this software. If not, see
|
||||
* <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||
*/
|
||||
#ifndef ARGON2_H
|
||||
#define ARGON2_H
|
||||
#ifndef argon2_H
|
||||
#define argon2_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef blake2_long_H
|
||||
#define blake2_long_H
|
||||
#ifndef blake2b_long_H
|
||||
#define blake2b_long_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef BLAKE_ROUND_MKA_H
|
||||
#define BLAKE_ROUND_MKA_H
|
||||
#ifndef blamka_round_ref_H
|
||||
#define blamka_round_ref_H
|
||||
|
||||
#include "argon2-impl.h"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef BLAKE_ROUND_MKA_OPT_SSSE3_H
|
||||
#define BLAKE_ROUND_MKA_OPT_SSSE3_H
|
||||
#ifndef blamka_round_ssse3_H
|
||||
#define blamka_round_ssse3_H
|
||||
|
||||
#include "argon2-impl.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user