mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-25 20:20:57 +00:00
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
// cmdlib.h
|
|
|
|
#ifndef __CMDLIB__
|
|
#define __CMDLIB__
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable : 4244) // MIPS
|
|
#pragma warning(disable : 4136) // X86
|
|
#pragma warning(disable : 4051) // ALPHA
|
|
|
|
#pragma warning(disable : 4018) // signed/unsigned mismatch
|
|
#pragma warning(disable : 4305) // truncate from double to float
|
|
#endif
|
|
|
|
#include "doomtype.h"
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <stdarg.h>
|
|
|
|
// the dec offsetof macro doesnt work very well...
|
|
#define myoffsetof(type,identifier) ((size_t)&((type *)0)->identifier)
|
|
|
|
|
|
int Q_filelength (FILE *f);
|
|
BOOL FileExists (char *filename);
|
|
|
|
extern char progdir[1024];
|
|
|
|
void FixPathSeperator (char *path);
|
|
|
|
void DefaultExtension (char *path, char *extension);
|
|
|
|
void ExtractFilePath (char *path, char *dest);
|
|
void ExtractFileBase (char *path, char *dest);
|
|
|
|
int ParseHex (char *str);
|
|
int ParseNum (char *str);
|
|
BOOL IsNum (char *str); // [RH] added
|
|
|
|
char *COM_Parse (char *data);
|
|
|
|
extern char com_token[8192];
|
|
extern BOOL com_eof;
|
|
|
|
char *copystring(const char *s);
|
|
|
|
void CRC_Init(unsigned short *crcvalue);
|
|
void CRC_ProcessByte(unsigned short *crcvalue, byte data);
|
|
unsigned short CRC_Value(unsigned short crcvalue);
|
|
|
|
|
|
#endif
|