cryptopals_c

cryptopals crypto challenges solutions in pure c
git clone git://git.superpozycja.net/cryptopals_c
Log | Files | Refs | README

commit 71f476d734288b8323e25634e8c96bbbd2e57673
parent c8a608907b0ee385f5be45728c3a960fdd060688
Author: superpozycja <anna@superpozycja.net>
Date:   Sat, 22 Feb 2025 23:06:03 +0100

lib: add digests to the include guards so we don't collide

Diffstat:
Mlib/analysis.h | 4++--
Mlib/ba.h | 4++--
Mlib/util.h | 4++--
3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/analysis.h b/lib/analysis.h @@ -1,5 +1,5 @@ -#ifndef ANALYSIS_H -#define ANALYSIS_H +#ifndef ANALYSIS_H_1e491544 +#define ANALYSIS_H_1e491544 #include <ctype.h> #include <string.h> diff --git a/lib/ba.h b/lib/ba.h @@ -1,5 +1,5 @@ -#ifndef BA_H -#define BA_H +#ifndef BA_H_1e491544 +#define BA_H_1e491544 #include <stdlib.h> #include <string.h> diff --git a/lib/util.h b/lib/util.h @@ -1,5 +1,5 @@ -#ifndef UTIL_H -#define UTIL_H +#ifndef UTIL_H_1e491544 +#define UTIL_H_1e491544 #include <stdio.h> #include <stdlib.h>