Subversion Repositories Tewi

Rev

Rev 16 | Rev 27 | 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 18 2024-09-14 00:42:40Z nishi $ */
2
 
16 nishi 3
#define SOURCE
4
 
3 nishi 5
#include "tw_version.h"
6
 
7
const char* tw_version = "0.00";
8
 
18 nishi 9
const char* tw_platform =
10
#if defined(PLATFORM)
11
    PLATFORM
12
#elif defined(__NetBSD__)
13
    "NetBSD"
14
#elif defined(__MINGW32__)
15
    "Windows"
16
#else
17
    "Unix"
18
#endif
19
    ;
20
 
3 nishi 21
const char* tw_get_version(void) { return tw_version; }
18 nishi 22
const char* tw_get_platform(void) { return tw_platform; }