mirror of
https://github.com/louisrubet/rpn
synced 2024-12-30 10:23:32 +01:00
parent
5e15b3b8dc
commit
3dbe71fb8b
1 changed files with 5 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
// version and soft name
|
// version and soft name
|
||||||
static const char version[] = "2.0 RC1";
|
static const char version[] = "2.0 RC1";
|
||||||
static const char uname[] =
|
static const char uname[] =
|
||||||
"rpn v2.0 RC1, (c) 2013 <louis@rubet.fr>, GNU General Public License";
|
"rpn v2.0 RC1, (c) 2013 <louis@rubet.fr>, GNU LGPL v3";
|
||||||
|
|
||||||
static const char g_cursor[] = "> ";
|
static const char g_cursor[] = "> ";
|
||||||
static const string g_show_stack_separator = "> ";
|
static const string g_show_stack_separator = "> ";
|
||||||
|
@ -11,12 +11,10 @@ static const char description[] =
|
||||||
ATTR_BOLD "R" ATTR_OFF "everse "
|
ATTR_BOLD "R" ATTR_OFF "everse "
|
||||||
ATTR_BOLD "P" ATTR_OFF "olish "
|
ATTR_BOLD "P" ATTR_OFF "olish "
|
||||||
ATTR_BOLD "N" ATTR_OFF "otation language, based on "
|
ATTR_BOLD "N" ATTR_OFF "otation language, based on "
|
||||||
"Hewlett-Packard RPL language\n"
|
"Hewlett-Packard RPL language\n\n"
|
||||||
"using MPFR library v";
|
"using " ATTR_BOLD "MPFR library v" ATTR_OFF MPFR_VERSION_STRING " under GNU LGPL v3\n"
|
||||||
static const char description_more[] =
|
"for multiple-precision floating-point computations with correct rounding\n";
|
||||||
" released under the GNU Lesser General Public License,\n"
|
|
||||||
"version 3 or any later version\n";
|
|
||||||
|
|
||||||
// syntax
|
// syntax
|
||||||
static const char syntax[] =
|
static const char syntax[] =
|
||||||
ATTR_BOLD "Syntax" ATTR_OFF ": rpn [command]\n"
|
ATTR_BOLD "Syntax" ATTR_OFF ": rpn [command]\n"
|
||||||
|
|
Loading…
Reference in a new issue