mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-24 13:45:05 +00:00
16 lines
180 B
C
16 lines
180 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *typthon_version(void);
|
|
void typthon_print_banner(FILE *output);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|