mirror of
https://github.com/louisrubet/rpn
synced 2025-01-04 11:01:35 +01:00
23 lines
841 B
C
23 lines
841 B
C
// version and soft name
|
|
static const char version[] = "2.0 RC1";
|
|
static const char uname[] =
|
|
"rpn v2.0 RC1, (c) 2013 <louis@rubet.fr>, GNU LGPL v3";
|
|
|
|
static const char g_cursor[] = "> ";
|
|
static const string g_show_stack_separator = "> ";
|
|
|
|
// description
|
|
static const char description[] =
|
|
ATTR_BOLD "R" ATTR_OFF "everse "
|
|
ATTR_BOLD "P" ATTR_OFF "olish "
|
|
ATTR_BOLD "N" ATTR_OFF "otation language, based on "
|
|
"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";
|
|
|
|
// syntax
|
|
static const char syntax[] =
|
|
ATTR_BOLD "Syntax" ATTR_OFF ": rpn [command]\n"
|
|
"with optional command = list of commands";
|
|
|
|
static const char prompt[] = ATTR_BOLD "rpn" ATTR_OFF "> ";
|