removed double underscores from include guards
This commit is contained in:
parent
959a2fed86
commit
0b98cedff4
3 changed files with 6 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
#ifndef __CODING_H
|
#ifndef CODING_H
|
||||||
#define __CODING_H
|
#define CODING_H
|
||||||
|
|
||||||
unsigned char encode(unsigned char c);
|
unsigned char encode(unsigned char c);
|
||||||
unsigned char decode(unsigned char c);
|
unsigned char decode(unsigned char c);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef __USER_H
|
#ifndef USER_H
|
||||||
#define __USER_H
|
#define USER_H
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef __USERTABLE_H
|
#ifndef USERTABLE_H
|
||||||
#define __USERTABLE_H
|
#define USERTABLE_H
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue