mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-26 14:30:48 +00:00
Move strlwr() into shared.c and don't link main.c into the refresher
This commit is contained in:
parent
a7aa1e93c0
commit
179ec5538e
4 changed files with 18 additions and 16 deletions
1
Makefile
1
Makefile
|
@ -385,7 +385,6 @@ OPENGL_OBJS_ = \
|
||||||
src/common/shared/shared.o \
|
src/common/shared/shared.o \
|
||||||
src/unix/glob.o \
|
src/unix/glob.o \
|
||||||
src/unix/hunk.o \
|
src/unix/hunk.o \
|
||||||
src/unix/main.o \
|
|
||||||
src/unix/qgl.o
|
src/unix/qgl.o
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
|
@ -196,6 +196,8 @@ void Com_sprintf(char *dest, int size, char *fmt, ...);
|
||||||
|
|
||||||
void Com_PageInMemory(byte *buffer, int size);
|
void Com_PageInMemory(byte *buffer, int size);
|
||||||
|
|
||||||
|
char *strlwr ( char *s );
|
||||||
|
|
||||||
/* ============================================= */
|
/* ============================================= */
|
||||||
|
|
||||||
/* portable case insensitive compare */
|
/* portable case insensitive compare */
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
* =======================================================================
|
* =======================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
#include "../header/shared.h"
|
#include "../header/shared.h"
|
||||||
|
|
||||||
#define DEG2RAD(a) (a * M_PI) / 180.0F
|
#define DEG2RAD(a) (a * M_PI) / 180.0F
|
||||||
|
@ -1113,6 +1115,20 @@ Com_sprintf(char *dest, int size, char *fmt, ...)
|
||||||
strcpy(dest, bigbuffer);
|
strcpy(dest, bigbuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *
|
||||||
|
strlwr ( char *s )
|
||||||
|
{
|
||||||
|
char *p = s;
|
||||||
|
|
||||||
|
while ( *s )
|
||||||
|
{
|
||||||
|
*s = tolower( *s );
|
||||||
|
s++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ( p );
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* =====================================================================
|
* =====================================================================
|
||||||
*
|
*
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
* =======================================================================
|
* =======================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
@ -38,20 +37,6 @@
|
||||||
cvar_t *nostdout;
|
cvar_t *nostdout;
|
||||||
uid_t saved_euid;
|
uid_t saved_euid;
|
||||||
|
|
||||||
char *
|
|
||||||
strlwr ( char *s )
|
|
||||||
{
|
|
||||||
char *p = s;
|
|
||||||
|
|
||||||
while ( *s )
|
|
||||||
{
|
|
||||||
*s = tolower( *s );
|
|
||||||
s++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ( p );
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main ( int argc, char **argv )
|
main ( int argc, char **argv )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue