]> git.draconx.ca Git - rrace.git/blob - src/version.h
motif: Combine status details into a single flags member.
[rrace.git] / src / version.h
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 #ifndef RRACE_VERSION_H_
20 #define RRACE_VERSION_H_
21
22 #include <stdio.h>
23
24 /*
25  * Print a line containing the name of the program and the version of the
26  * package, followed by a line for each copyright notice to the specified file.
27  */
28 void version_print_head(const char *progname, FILE *f);
29
30 /*
31  * As with the above, but the string is put in a newly-allocated string which
32  * must be freed by the caller.  The resulting string has newline characters
33  * between each line but there is no newline after the final line.
34  */
35 char *version_format_head(const char *progname);
36
37 #endif