This repository has been archived by the owner on Jul 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cmdlib.h
90 lines (68 loc) · 1.78 KB
/
cmdlib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// cmdlib.h
#ifndef __CMDLIB__
#define __CMDLIB__
#ifdef __NeXT__
#include <libc.h>
#include <errno.h>
#include <ctype.h>
#else
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <string.h>
#include <io.h>
#include <direct.h>
#include <process.h>
#include <dos.h>
#include <stdarg.h>
#include <conio.h>
#include <bios.h>
#endif
#ifdef __NeXT__
#define strcmpi strcasecmp
#define stricmp strcasecmp
char *getcwd (char *path, int length);
char *strupr (char *in);
int filelength (int handle);
int tell (int handle);
#endif
#ifndef __BYTEBOOL__
#define __BYTEBOOL__
typedef enum {false, true} boolean;
typedef unsigned char byte;
#endif
#ifndef __NeXT__
#define PATHSEPERATOR '\\'
#endif
#ifdef __NeXT__
#define O_BINARY 0
#define PATHSEPERATOR '/'
#endif
int GetKey (void);
void Error (char *error, ...);
int CheckParm (char *check);
int SafeOpenWrite (char *filename);
int SafeOpenRead (char *filename);
void SafeRead (int handle, void *buffer, long count);
void SafeWrite (int handle, void *buffer, long count);
void *SafeMalloc (long size);
long LoadFile (char *filename, void **bufferptr);
void SaveFile (char *filename, void *buffer, long count);
void DefaultExtension (char *path, char *extension);
void DefaultPath (char *path, char *basepath);
void StripFilename (char *path);
void StripExtension (char *path);
void ExtractFileBase (char *path, char *dest);
long ParseNum (char *str);
short BigShort (short l);
short LittleShort (short l);
long BigLong (long l);
long LittleLong (long l);
extern byte *screen;
void GetPalette (byte *pal);
void SetPalette (byte *pal);
void VGAMode (void);
void TextMode (void);
#endif