19 lines
323 B
C
19 lines
323 B
C
|
/*
|
||
|
Hold the version number of the project.
|
||
|
*/
|
||
|
|
||
|
#ifndef _TESSEROIDS_VERSION_H_
|
||
|
#define _TESSEROIDS_VERSION_H_
|
||
|
|
||
|
/** Current project version number */
|
||
|
const char tesseroids_version[] = "1.1";
|
||
|
|
||
|
|
||
|
/** Print version and license information
|
||
|
|
||
|
@param progname name of the program
|
||
|
*/
|
||
|
void print_version(const char *progname);
|
||
|
|
||
|
#endif
|