Subversion Repositories Tewi

Rev

Rev 312 | Rev 325 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 nishi 1
/* $Id: version.c 317 2024-10-14 12:03:03Z nishi $ */
2
 
16 nishi 3
#define SOURCE
4
 
3 nishi 5
#include "tw_version.h"
6
 
49 nishi 7
const char* tw_version = TW_VERSION;
3 nishi 8
 
18 nishi 9
const char* tw_platform =
10
#if defined(PLATFORM)
104 nishi 11
    PLATFORM
18 nishi 12
#elif defined(__NetBSD__)
13
    "NetBSD"
252 nishi 14
#elif defined(__OpenBSD__)
15
    "OpenBSD"
27 nishi 16
#elif defined(__linux__)
17
    "Linux"
312 nishi 18
#elif defined(__OS2__)
19
    "OS/2"
317 nishi 20
#elif defined(__NETWARE__)
21
    "NetWare"
214 nishi 22
#elif defined(__MINGW32__)
23
    "Windows-MinGW32"
24
#elif defined(_MSC_VER)
219 nishi 25
    "Windows-VisualC"
215 nishi 26
#elif defined(__BORLANDC__)
219 nishi 27
    "Windows-Borland"
28
#elif defined(__WATCOMC__)
29
    "Windows-Watcom"
81 nishi 30
#elif defined(__HAIKU__)
31
    "Haiku"
163 nishi 32
#elif defined(__CYGWIN__)
33
    "Cygwin"
183 nishi 34
#elif defined(_PSP)
35
    "PSP"
187 nishi 36
#elif defined(__PPU__)
37
    "PS3"
277 nishi 38
#elif defined(__minix)
39
    "Minix"
305 nishi 40
#elif defined(__USLC__)
41
    "UnixWare"
18 nishi 42
#else
43
    "Unix"
44
#endif
45
    ;
46
 
3 nishi 47
const char* tw_get_version(void) { return tw_version; }
18 nishi 48
const char* tw_get_platform(void) { return tw_platform; }