summaryrefslogtreecommitdiffstats
path: root/modules/about/inc/about.h
blob: b51eee90b5efe9f6596223df56f808272ac3de85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/******************************************************************************
 *	Copyright (C) 2015	Alejandro Colomar Andrés		      *
 ******************************************************************************/


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# ifndef		MSW_ABOUT_H
	# define	MSW_ABOUT_H


/******************************************************************************
 ******* headers **************************************************************
 ******************************************************************************/
		/* FILENAME_MAX */
	#include <stdio.h>


/******************************************************************************
 ******* macros ***************************************************************
 ******************************************************************************/
	# define	PROG_NAME	"mine-sweeper"
	# define	PROG_YEAR	"2015"


/******************************************************************************
 ******* variables ************************************************************
 ******************************************************************************/
	extern	char	share_path [FILENAME_MAX];


/******************************************************************************
 ******* functions ************************************************************
 ******************************************************************************/
	void	about_init	(void);
	void	print_cpright	(void);
	void	print_disclaim	(void);
	void	print_help	(void);
	void	print_license	(void);
	void	print_usage	(void);
	void	print_version	(void);


/******************************************************************************
 ******* include guard ********************************************************
 ******************************************************************************/
# endif			/* about.h */


/******************************************************************************
 ******* end of file **********************************************************
 ******************************************************************************/