Standardise header include guards

Tokens that begin with two underscores __* or an underscore and an uppercase letter _X* are reserved,
so we should avoid those for our own include guards.  The standard I'm settling on for foo.h is FOO_H_.
This commit is contained in:
Kevin Easton
2017-05-10 23:30:11 +10:00
parent a329dd8404
commit 3f87eb31b1
55 changed files with 151 additions and 201 deletions

View File

@@ -1,5 +1,5 @@
/*
* crypt.h: header for crypt.c
* encrypt.h: header for encrypt.c
*
* Written By Michael Sandrof
*
@@ -9,9 +9,8 @@
*
* @(#)$Id$
*/
#ifndef __CRYPT_H_
#define __CRYPT_H_
#ifndef ENCRYPT_H_
#define ENCRYPT_H_
char *crypt_msg (char *, char *);
char *decrypt_msg (char *, char *);
@@ -23,4 +22,4 @@
#define CRYPT_HEADER ""
#define CRYPT_HEADER_LEN 5
#endif /* __crypt_h_ */
#endif /* ENCRYPT_H_ */