initial upload

This commit is contained in:
2021-05-05 15:31:06 +08:00
parent cdb06fb087
commit 95e17fce02
29 changed files with 4989 additions and 0 deletions

18
lib/version.h Executable file
View File

@@ -0,0 +1,18 @@
/*
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