]> git.codecow.com Git - Monocypher.git/commitdiff
removed leading double underscores for include guards
authorLoup Vaillant <loup@loup-vaillant.fr>
Sun, 11 Sep 2016 14:34:37 +0000 (16:34 +0200)
committerLoup Vaillant <loup@loup-vaillant.fr>
Sun, 11 Sep 2016 14:35:56 +0000 (16:35 +0200)
chacha20.h

index d8e4518311fdf8e971152966af74b2969bc21129..91c07490b59a7e07ecae4139f58a765720889e99 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __CHACHA20__
-#define __CHACHA20__
+#ifndef CHACHA20_H
+#define CHACHA20_H
 
 #include <inttypes.h>
 #include <stddef.h>
@@ -93,4 +93,4 @@ crypto_init_rng(crypto_rng_context *ctx, const uint8_t key[32]);
 void
 crypto_random_bytes(crypto_rng_context *ctx, uint8_t *out, size_t nb_bytes);
 
-#endif // __CHACHA20__
+#endif // CHACHA20_H