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
//
#include "STDIO.H"
#include "STDLIB.H"
#include "MATH.H"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "hud.h"
#include "cl_util.h"

View file

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

View file

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

View file

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