]> git.draconx.ca Git - rrace.git/blob - src/version.c
Replace Gnulib striconv with copyright_symbol from dxcommon.
[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 <stdlib.h>
22 #include <stdarg.h>
23 #include <localcharset.h>
24
25 #include "version.h"
26 #include "copysym.h"
27
28 #define VERSION_HEAD_FMT "%s (RRace) %s\nCopyright %s 2023 Nick Bowler"
29 #define VERSION_HEAD_ARGS progname, PACKAGE_VERSION, copysign
30
31 void version_print_head(const char *progname, FILE *f)
32 {
33         const char *copysign = copyright_symbol(locale_charset());
34
35         printf(VERSION_HEAD_FMT, VERSION_HEAD_ARGS);
36         putc('\n', f);
37 }
38
39 char *version_format_head(const char *progname)
40 {
41         const char *copysign = copyright_symbol(locale_charset());
42         char *ret;
43
44         ret = malloc(sizeof VERSION_HEAD_FMT + 100);
45         if (ret)
46                 sprintf(ret, VERSION_HEAD_FMT, VERSION_HEAD_ARGS);
47
48         return ret;
49 }