Standardize include guards, clang-format headers

Former-commit-id: 261ee48bba
This commit is contained in:
2022-10-09 01:13:17 -04:00
parent 68d30b954d
commit 7f83e1fa03
341 changed files with 1373 additions and 1256 deletions

View File

@@ -1,7 +1,8 @@
#ifndef _TGAMETYPES_HPP
#define _TGAMETYPES_HPP
#ifndef _TGAMETYPES
#define _TGAMETYPES
#include "types.h"
class CInputStream;
class COutputStream;
@@ -73,4 +74,4 @@ private:
#define ALIGN_UP(x, a) (((x) + (a - 1)) & ~(a - 1))
#endif
#endif // _TGAMETYPES