mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
2678aa601f
Some other misc cleanups..
63 lines
1.8 KiB
C
63 lines
1.8 KiB
C
/*
|
|
lib_replace.h
|
|
|
|
(description)
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
|
Please see the file "AUTHORS" for a list of contributors
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#ifndef _LIB_REPLACE_H
|
|
#define _LIB_REPLACE_H
|
|
|
|
//============================================================================
|
|
|
|
#define Q_memset(d, f, c) memset((d), (f), (c))
|
|
#define Q_memcpy(d, s, c) memcpy((d), (s), (c))
|
|
#define Q_memcmp(m1, m2, c) memcmp((m1), (m2), (c))
|
|
#define Q_strcpy(d, s) strcpy((d), (s))
|
|
#define Q_strncpy(d, s, n) strncpy((d), (s), (n))
|
|
#define Q_strlen(s) ((int)strlen(s))
|
|
#define Q_strrchr(s, c) strrchr((s), (c))
|
|
#define Q_strcat(d, s) strcat((d), (s))
|
|
#define Q_strcmp(s1, s2) strcmp((s1), (s2))
|
|
#define Q_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define Q_strcasecmp(s1, s2) _stricmp((s1), (s2))
|
|
#define Q_strncasecmp(s1, s2, n) _strnicmp((s1), (s2), (n))
|
|
|
|
#else
|
|
|
|
#define Q_strcasecmp(s1, s2) strcasecmp((s1), (s2))
|
|
#define Q_strncasecmp(s1, s2, n) strncasecmp((s1), (s2), (n))
|
|
|
|
#endif
|
|
|
|
int Q_atoi (char *str);
|
|
float Q_atof (char *str);
|
|
int Q_qstrcmp(const char *val, const char *ref);
|
|
|
|
#endif // _LIB_REPLACE_H
|