mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-05-02 17:45:51 +00:00
15 lines
275 B
C
15 lines
275 B
C
#include "typthon/runtime.h"
|
|
#include "typthon/version.h"
|
|
|
|
const char *typthon_version(void) {
|
|
return TYPTHON_VERSION;
|
|
}
|
|
|
|
void typthon_print_banner(FILE *output) {
|
|
if (output == NULL) {
|
|
return;
|
|
}
|
|
|
|
fprintf(output, "Typthon %s\n", typthon_version());
|
|
}
|