initial upload

This commit is contained in:
2021-05-05 10:58:03 +08:00
parent d6ffc7f33c
commit f1cf25db22
114 changed files with 83953 additions and 0 deletions

19
lib/version.h Normal file
View File

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