-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathutil.c
23 lines (18 loc) · 814 Bytes
/
util.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* -MODULE----------------------------------------------------------------------
Phorward C/C++ Library
Copyright (C) 2006-2019 by Phorward Software Technologies, Jan Max Meyer
https://phorward.info ++ contact<at>phorward<dash>software<dot>com
All rights reserved. See LICENSE for more information.
File: util.c
Usage: Utility library for the command-line tools.
----------------------------------------------------------------------------- */
#include "phorward.h"
void version( char** argv, char* descr )
{
printf( "%s v%s\n", *argv, LIBPHORWARD_VERSION );
if( descr && *descr )
printf( "%s. Part of the Phorward C/C++ Library.\n\n", descr );
printf( "Copyright (C) 2006-2019 by Phorward Software Technologies, "
"Jan Max Meyer\n"
"All rights reserved. See LICENSE for more information.\n" );
}