]> git.draconx.ca Git - rrace.git/blob - src/version.c
motif: Combine status details into a single flags member.
[rrace.git] / src / version.c
1 /*
2  * Version string boilerplate for slide puzzle game.
3  * Copyright © 2022-2023 Nick Bowler
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18
19 #include <config.h>
20 #include <stdio.h>
21 #include <stdarg.h>
22 #include <striconv.h>
23 #include <localcharset.h>
24
25 #include "version.h"
26
27 const char *init_copysign(char **alloc)
28 {
29         *alloc = NULL;
30
31         if (ENABLE_NLS) {
32                 char *buf = str_iconv("\xc2\xa9", "UTF-8", locale_charset());
33                 if (buf)
34                         return *alloc = buf;
35         }
36
37         return "(C)";
38 }
39
40 #define VERSION_HEAD_FMT "%s (RRace) %s\nCopyright %s 2023 Nick Bowler"
41 #define VERSION_HEAD_ARGS progname, PACKAGE_VERSION, copysign
42
43 void version_print_head(const char *progname, FILE *f)
44 {
45         const char *copysign;
46         char *copybuf;
47
48         copysign = init_copysign(&copybuf);
49
50         printf(VERSION_HEAD_FMT, VERSION_HEAD_ARGS);
51         putc('\n', f);
52
53         free(copybuf);
54 }
55
56 char *version_format_head(const char *progname)
57 {
58         const char *copysign;
59         char *copybuf, *ret;
60
61         copysign = init_copysign(&copybuf);
62
63         ret = malloc(sizeof VERSION_HEAD_FMT + 100);
64         if (ret)
65                 sprintf(ret, VERSION_HEAD_FMT, VERSION_HEAD_ARGS);
66
67         free(copybuf);
68         return ret;
69 }