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
/*
*
* util.h
*
* 30th April 2010: Created util.h from parts of OpenJazz.h
*
* Part of the OpenJazz project
*
*
* Copyright (c) 2005-2010 Alister Thomson
*
* OpenJazz is distributed under the terms of
* the GNU General Public License, version 2.0
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef _UTIL_H
#define _UTIL_H
#include "OpenJazz.h"
// Variable
// Trigonometric function look-up table
EXTERN fixed sinLut[1024];
// Functions
EXTERN bool fileExists (const char *fileName);
EXTERN char * createString (const char *string);
EXTERN char * createString (const char *first, const char *second);
EXTERN char * createFileName (const char *type, int extension);
EXTERN char * createFileName (const char *type, const char *extension);
EXTERN char * createFileName (const char *type, int level, int extension);
EXTERN char * createEditableString (const char *string);
EXTERN void log (const char *message);
EXTERN void log (const char *message, const char *detail);
EXTERN void log (const char *message, int number);
EXTERN void logError (const char *message, const char *detail);
EXTERN fixed fSin (fixed angle);
EXTERN fixed fCos (fixed angle);
#endif