2015-02-23 17:33:05 +01:00
|
|
|
// version and soft name
|
2017-04-20 22:46:48 +02:00
|
|
|
static const char version[] = "2.0 RC1";
|
2017-04-20 23:06:49 +02:00
|
|
|
static const char uname[] =
|
2017-05-02 10:53:50 +02:00
|
|
|
"rpn v2.0 RC1, (c) 2013 <louis@rubet.fr>, GNU LGPL v3";
|
2015-02-23 17:33:05 +01:00
|
|
|
|
2015-03-01 16:02:23 +01:00
|
|
|
static const char g_cursor[] = "> ";
|
|
|
|
static const string g_show_stack_separator = "> ";
|
|
|
|
|
2017-04-20 23:06:49 +02:00
|
|
|
// description
|
|
|
|
static const char description[] =
|
2015-07-23 12:00:54 +02:00
|
|
|
ATTR_BOLD "R" ATTR_OFF "everse "
|
|
|
|
ATTR_BOLD "P" ATTR_OFF "olish "
|
2017-04-20 23:06:49 +02:00
|
|
|
ATTR_BOLD "N" ATTR_OFF "otation language, based on "
|
2017-05-02 10:53:50 +02:00
|
|
|
"Hewlett-Packard RPL language\n\n"
|
|
|
|
"using " ATTR_BOLD "MPFR library v" ATTR_OFF MPFR_VERSION_STRING " under GNU LGPL v3\n"
|
|
|
|
"for multiple-precision floating-point computations with correct rounding\n";
|
|
|
|
|
2017-04-20 23:06:49 +02:00
|
|
|
// syntax
|
|
|
|
static const char syntax[] =
|
|
|
|
ATTR_BOLD "Syntax" ATTR_OFF ": rpn [command]\n"
|
|
|
|
"with optional command = list of commands";
|
2015-02-23 17:33:05 +01:00
|
|
|
|
2015-02-12 11:10:00 +01:00
|
|
|
static const char prompt[] = ATTR_BOLD "rpn" ATTR_OFF "> ";
|