20 lines
383 B
C
20 lines
383 B
C
|
/*
|
||
|
Hold the version number of the project.
|
||
|
*/
|
||
|
|
||
|
#ifndef _TESSEROIDS_VERSION_H_
|
||
|
#define _TESSEROIDS_VERSION_H_
|
||
|
|
||
|
#include "stdio.h"
|
||
|
|
||
|
/** Current project version number */
|
||
|
extern const char tesseroids_version[];
|
||
|
|
||
|
/** Print version number */
|
||
|
extern void print_version(const char* version_num);
|
||
|
|
||
|
/** Print version number */
|
||
|
extern void print_copyright();
|
||
|
|
||
|
#endif // _TESSEROIDS_VERSION_H_
|