summaryrefslogtreecommitdiff
path: root/util.h
blob: d49fd5bca26b99c51183732162eec24409b231b2 (plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*

    viDOOM - level editor for DOOM

    Copyright (C) 2000  Ian Cowburn (ianc@noddybox.demon.co.uk)

    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 the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    -------------------------------------------------------------------------

    Various utility functions

    $Id$


*/

#ifndef VIDOOM_UTIL_H

#define VIDOOM_UTIL_H

#include "config.h"
#include <stdio.h>

/* Returns a static copy of the string, which if it is over n characters long
   will be trimmed to n-3 character and "..." appended.

   Note this function's return is static, but there can be 10 invocations
   before the same memory is used (ie. it's safe to use more than once in
   function calls).

   Note that string longer than a certain length will be trimmed regardless.
*/
char	*TrimStr(char *p, int n);


/* Alters the string so that all occurances of '\r\n' are converted to '\n'.
   The return is the same pointer passed in p, after the conversion.

   NULL is returned unaltered.
*/
char	*UnMSDOS(char *p);


/* Alters the string so that all occurances of '\n' are converted to '\r\n'.
   If rel is TRUE, the passed pointer p is released with Release() after
   conversion.

   The return is a newly allocated copy of the converted string.
*/
char	*ApplyMSDOS(char *p, int rel);


/* Uppercase the supplied string
*/
void	UCase(char *p);


/* Lowercase the supplied string
*/
void	LCase(char *p);


/* Read a byte from a file
*/
Byte	GetByte(FILE *fp);


/* Read a word from a file, and macros to read Short and UShort
*/
Word	GetWord(FILE *fp);

#define	GetShort(fp) ((Short)GetWord(fp))
#define	GetUShort(fp) ((UShort)GetWord(fp))


/* Read a long from a file
*/
Long	GetLong(FILE *fp);


/* Put a byte to a file
*/
void	PutByte(FILE *fp,Byte b);


/* Put a short to a file
*/
void	PutShort(FILE *fp,Short s);


/* Put an unsigned short to a file
*/
void	PutUShort(FILE *fp,UShort s);


/* Put a long to a file
*/
void	PutLong(FILE *fp,Long l);


/* A skin over fread(), that does any necessary looping.  Returns 'size' on
   sucess, -1 on failure.  size is in bytes.
*/
int	FRead(FILE *fp, void *buff, int size);


/* A skin over fwrite(), that does any necessary looping.  Returns 'size' on
   sucess, -1 on failure.  size is in bytes.
*/
int	FWrite(FILE *fp, void *buff, int size);


/* Returns the size of a file.  Does this by seeking to end and getting the
   position.  Note that the original position is restored.
*/
long	FLen(FILE *fp);


#endif