Consistent #include guards

This commit is contained in:
Frank Denis 2015-12-29 21:35:45 +01:00
parent 654a2b3f95
commit c7b9178d5a
7 changed files with 15 additions and 14 deletions

View File

@ -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"

View File

@ -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,

View File

@ -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>

View File

@ -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>

View File

@ -1,5 +1,5 @@
#ifndef blake2_long_H
#define blake2_long_H
#ifndef blake2b_long_H
#define blake2b_long_H
#include <stddef.h>

View File

@ -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"

View File

@ -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"