client: convert libc headers to lowercase

This commit is contained in:
Alibek Omarov 2023-09-06 22:51:07 +03:00
parent 6672dee0e9
commit 70d346f7cb
4 changed files with 13 additions and 13 deletions

View File

@ -18,9 +18,9 @@
// implementation of CHudHealth class // implementation of CHudHealth class
// //
#include "STDIO.H" #include <stdio.h>
#include "STDLIB.H" #include <stdlib.h>
#include "MATH.H" #include <math.h>
#include "hud.h" #include "hud.h"
#include "cl_util.h" #include "cl_util.h"

View File

@ -14,9 +14,9 @@
// //
// thewastes_hud.cpp // thewastes_hud.cpp
// //
#include "STDIO.H" #include <stdio.h>
#include "STDLIB.H" #include <stdlib.h>
#include "MATH.H" #include <math.h>
#include <string.h> #include <string.h>
#include "hud.h" #include "hud.h"

View File

@ -18,9 +18,9 @@
// implementation of class-less helper functions // implementation of class-less helper functions
// //
#include "STDIO.H" #include <stdio.h>
#include "STDLIB.H" #include <stdlib.h>
#include "MATH.H" #include <math.h>
#include "hud.h" #include "hud.h"
#include "cl_util.h" #include "cl_util.h"
@ -142,4 +142,4 @@ int GetLocalPlayerIndex()
void CenterPrint( const char *string ) void CenterPrint( const char *string )
{ {
gEngfuncs.pfnCenterPrint( string ); gEngfuncs.pfnCenterPrint( string );
} }

View File

@ -17,9 +17,9 @@
// //
// Misc C-runtime library headers // Misc C-runtime library headers
#include "STDIO.H" #include <stdio.h>
#include "STDLIB.H" #include <stdlib.h>
#include "MATH.H" #include <math.h>
// Header file containing definition of globalvars_t and entvars_t // Header file containing definition of globalvars_t and entvars_t
typedef int func_t; // typedef int func_t; //