Put include guard to every header

* ensure include guard to every header
* comment endif guard block

Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Boris Barbulovski 2014-02-11 19:14:46 +01:00 committed by Dirk Hohndel
parent a3d82bf9b1
commit ccb1c33d02
54 changed files with 78 additions and 66 deletions

4
sha1.h
View file

@ -5,6 +5,8 @@
* This was initially based on the Mozilla SHA1 implementation, although
* none of the original Mozilla code remains.
*/
#ifndef SHA1_H
#define SHA1_H
typedef struct {
unsigned long long size;
@ -31,3 +33,5 @@ static inline void SHA1(const void *dataIn, unsigned long len, unsigned char has
SHA1_Update(&ctx, dataIn, len);
SHA1_Final(hashout, &ctx);
}
#endif // SHA1_H