diff options
Diffstat (limited to 'src/console.c')
-rw-r--r-- | src/console.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/console.c b/src/console.c index a15c8e7d..4a127c3e 100644 --- a/src/console.c +++ b/src/console.c @@ -3,6 +3,8 @@ #include "console.h" +#include "serd/serd.h" + #ifdef _WIN32 # ifdef _MSC_VER # define WIN32_LEAN_AND_MEAN 1 @@ -20,3 +22,20 @@ serd_set_stream_utf8_mode(FILE* const stream) (void)stream; #endif } + +int +serd_print_version(const char* const program) +{ + printf("%s %d.%d.%d <http://drobilla.net/software/serd>\n", + program, + SERD_MAJOR_VERSION, + SERD_MINOR_VERSION, + SERD_MICRO_VERSION); + + printf("Copyright 2011-2023 David Robillard <d@drobilla.net>.\n" + "License: <http://www.opensource.org/licenses/isc>\n" + "This is free software; you are free to change and redistribute it.\n" + "There is NO WARRANTY, to the extent permitted by law.\n"); + + return 0; +} |