removed double underscores from include guards

This commit is contained in:
Sven Gestegard Robertz 2021-11-01 13:47:03 +01:00
parent 959a2fed86
commit 0b98cedff4
3 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
#ifndef __CODING_H
#define __CODING_H
#ifndef CODING_H
#define CODING_H
unsigned char encode(unsigned char c);
unsigned char decode(unsigned char c);

View file

@ -1,5 +1,5 @@
#ifndef __USER_H
#define __USER_H
#ifndef USER_H
#define USER_H
#include <iostream>
#include <string>

View file

@ -1,5 +1,5 @@
#ifndef __USERTABLE_H
#define __USERTABLE_H
#ifndef USERTABLE_H
#define USERTABLE_H
#include <iostream>