bc(1) General Commands Manual bc(1) NNAAMMEE bc - An arbitrary precision calculator language SSYYNNTTAAXX bbcc [ --hhllwwssqqvv ] [long-options] [ _f_i_l_e _._._. ] DDEESSCCRRIIPPTTIIOONN bbcc is a language that supports arbitrary precision numbers with inter- active execution of statements. There are some similarities in the syntax to the C programming language. A standard math library is available by command line option. If requested, the math library is defined before processing any files. bbcc starts by processing code from all the files listed on the command line in the order listed. After all files have been processed, bbcc reads from the standard input. All code is executed as it is read. (If a file contains a command to halt the processor, bbcc will never read from the standard input.) This version of bbcc contains several extensions beyond traditional bbcc implementations and the POSIX draft standard. Command line options can cause these extensions to print a warning or to be rejected. This doc- ument describes the language accepted by this processor. Extensions will be identified as such. OOPPTTIIOONNSS -h, --help Print the usage and exit. -i, --interactive Force interactive mode. -l, --mathlib Define the standard math library. -w, --warn Give warnings for extensions to POSIX bbcc. -s, --standard Process exactly the POSIX bbcc language. -q, --quiet Do not print the normal GNU bc welcome. -v, --version Print the version number and copyright and quit. NNUUMMBBEERRSS The most basic element in bbcc is the number. Numbers are arbitrary pre- cision numbers. This precision is both in the integer part and the fractional part. All numbers are represented internally in decimal and all computation is done in decimal. (This version truncates results from divide and multiply operations.) There are two attributes of num- bers, the length and the scale. The length is the total number of dec- imal digits used by bbcc to represent a number and the scale is the total number of decimal digits after the decimal point. For example: .000001 has a length of 6 and scale of 6. 1935.000 has a length of 7 and a scale of 3. VVAARRIIAABBLLEESS Numbers are stored in two types of variables, simple variables and arrays. Both simple variables and array variables are named. Names begin with a letter followed by any number of letters, digits and underscores. All letters must be lower case. (Full alpha-numeric names are an extension. In POSIX bbcc all names are a single lower case letter.) The type of variable is clear by the context because all array variable names will be followed by brackets ([]). There are four special variables, ssccaallee,, iibbaassee,, oobbaassee,, and llaasstt. ssccaallee defines how some operations use digits after the decimal point. The default value of ssccaallee is 0. iibbaassee and oobbaassee define the conversion base for input and output numbers. The default for both input and out- put is base 10. llaasstt (an extension) is a variable that has the value of the last printed number. These will be discussed in further detail where appropriate. All of these variables may have values assigned to them as well as used in expressions. CCOOMMMMEENNTTSS Comments in bbcc start with the characters //** and end with the characters **//. Comments may start anywhere and appear as a single space in the input. (This causes comments to delimit other input items. For exam- ple, a comment can not be found in the middle of a variable name.) Comments include any newlines (end of line) between the start and the end of the comment. To support the use of scripts for bbcc, a single line comment has been added as an extension. A single line comment starts at a ## character and continues to the next end of the line. The end of line character is not part of the comment and is processed normally. EEXXPPRREESSSSIIOONNSS The numbers are manipulated by expressions and statements. Since the language was designed to be interactive, statements and expressions are executed as soon as possible. There is no "main" program. Instead, code is executed as it is encountered. (Functions, discussed in detail later, are defined when encountered.) A simple expression is just a constant. bbcc converts constants into internal decimal numbers using the current input base, specified by the variable iibbaassee. (There is an exception in functions.) The legal values of iibbaassee are 2 through 36. (Bases greater than 16 are an extension.) Assigning a value outside this range to iibbaassee will result in a value of 2 or 36. Input numbers may contain the characters 0-9 and A-Z. (Note: They must be capitals. Lower case letters are variable names.) Single digit numbers always have the value of the digit regardless of the value of iibbaassee. (i.e. A = 10.) For multi-digit numbers, bbcc changes all input digits greater or equal to ibase to the value of iibbaassee-1. This makes the number ZZZZZZ always be the largest 3 digit number of the input base. Full expressions are similar to many other high level languages. Since there is only one kind of number, there are no rules for mixing types. Instead, there are rules on the scale of expressions. Every expression has a scale. This is derived from the scale of original numbers, the operation performed and in many cases, the value of the variable ssccaallee. Legal values of the variable ssccaallee are 0 to the maximum number repre- sentable by a C integer. In the following descriptions of legal expressions, "expr" refers to a complete expression and "var" refers to a simple or an array variable. A simple variable is just a _n_a_m_e and an array variable is specified as _n_a_m_e[_e_x_p_r] Unless specifically mentioned the scale of the result is the maximum scale of the expressions involved. - expr The result is the negation of the expression. ++ var The variable is incremented by one and the new value is the result of the expression. -- var The variable is decremented by one and the new value is the result of the expression. var ++ The result of the expression is the value of the variable and then the variable is incremented by one. var -- The result of the expression is the value of the variable and then the variable is decremented by one. expr + expr The result of the expression is the sum of the two expressions. expr - expr The result of the expression is the difference of the two expressions. expr * expr The result of the expression is the product of the two expres- sions. expr / expr The result of the expression is the quotient of the two expres- sions. The scale of the result is the value of the variable ssccaallee. expr % expr The result of the expression is the "remainder" and it is com- puted in the following way. To compute a%b, first a/b is com- puted to ssccaallee digits. That result is used to compute a-(a/b)*b to the scale of the maximum of ssccaallee+scale(b) and scale(a). If ssccaallee is set to zero and both expressions are integers this expression is the integer remainder function. expr ^ expr The result of the expression is the value of the first raised to the second. The second expression must be an integer. (If the second expression is not an integer, a warning is generated and the expression is truncated to get an integer value.) The scale of the result is ssccaallee if the exponent is negative. If the exponent is positive the scale of the result is the minimum of the scale of the first expression times the value of the expo- nent and the maximum of ssccaallee and the scale of the first expres- sion. (e.g. scale(a^b) = min(scale(a)*b, max( ssccaallee,, scale(a))).) It should be noted that expr^0 will always return the value of 1. ( expr ) This alters the standard precedence to force the evaluation of the expression. var = expr The variable is assigned the value of the expression. var = expr This is equivalent to "var = var expr" with the exception that the "var" part is evaluated only once. This can make a difference if "var" is an array. Relational expressions are a special kind of expression that always evaluate to 0 or 1, 0 if the relation is false and 1 if the relation is true. These may appear in any legal expression. (POSIX bc requires that relational expressions are used only in if, while, and for state- ments and that only one relational test may be done in them.) The relational operators are expr1 < expr2 The result is 1 if expr1 is strictly less than expr2. expr1 <= expr2 The result is 1 if expr1 is less than or equal to expr2. expr1 > expr2 The result is 1 if expr1 is strictly greater than expr2. expr1 >= expr2 The result is 1 if expr1 is greater than or equal to expr2. expr1 == expr2 The result is 1 if expr1 is equal to expr2. expr1 != expr2 The result is 1 if expr1 is not equal to expr2. Boolean operations are also legal. (POSIX bbcc does NOT have boolean operations). The result of all boolean operations are 0 and 1 (for false and true) as in relational expressions. The boolean operators are: !expr The result is 1 if expr is 0. expr && expr The result is 1 if both expressions are non-zero. expr || expr The result is 1 if either expression is non-zero. The expression precedence is as follows: (lowest to highest) || operator, left associative && operator, left associative ! operator, nonassociative Relational operators, left associative Assignment operator, right associative + and - operators, left associative *, / and % operators, left associative ^ operator, right associative unary - operator, nonassociative ++ and -- operators, nonassociative This precedence was chosen so that POSIX compliant bbcc programs will run correctly. This will cause the use of the relational and logical oper- ators to have some unusual behavior when used with assignment expres- sions. Consider the expression: a = 3 < 5 Most C programmers would assume this would assign the result of "3 < 5" (the value 1) to the variable "a". What this does in bbcc is assign the value 3 to the variable "a" and then compare 3 to 5. It is best to use parenthesis when using relational and logical operators with the assignment operators. There are a few more special expressions that are provided in bbcc. These have to do with user defined functions and standard functions. They all appear as "_n_a_m_e((_p_a_r_a_m_e_t_e_r_s))". See the section on functions for user defined functions. The standard functions are: length ( expression ) The value of the length function is the number of significant digits in the expression. read ( ) The read function (an extension) will read a number from the standard input, regardless of where the function occurs. Beware, this can cause problems with the mixing of data and pro- gram in the standard input. The best use for this function is in a previously written program that needs input from the user, but never allows program code to be input from the user. The value of the read function is the number read from the standard input using the current value of the variable iibbaassee for the con- version base. scale ( expression ) The value of the scale function is the number of digits after the decimal point in the expression. sqrt ( expression ) The value of the sqrt function is the square root of the expres- sion. If the expression is negative, a run time error is gener- ated. SSTTAATTEEMMEENNTTSS Statements (as in most algebraic languages) provide the sequencing of expression evaluation. In bbcc statements are executed "as soon as pos- sible." Execution happens when a newline in encountered and there is one or more complete statements. Due to this immediate execution, new- lines are very important in bbcc. In fact, both a semicolon and a newline are used as statement separators. An improperly placed newline will cause a syntax error. Because newlines are statement separators, it is possible to hide a newline by using the backslash character. The sequence "\", where is the newline appears to bbcc as whitespace instead of a newline. A statement list is a series of statements sepa- rated by semicolons and newlines. The following is a list of bbcc state- ments and what they do: (Things enclosed in brackets ([]) are optional parts of the statement.) expression This statement does one of two things. If the expression starts with " ...", it is considered to be an assignment statement. If the expression is not an assignment statement, the expression is evaluated and printed to the out- put. After the number is printed, a newline is printed. For example, "a=1" is an assignment statement and "(a=1)" is an expression that has an embedded assignment. All numbers that are printed are printed in the base specified by the variable oobbaassee. The legal values for oobbaassee are 2 through BC_BASE_MAX. (See the section LIMITS.) For bases 2 through 16, the usual method of writing numbers is used. For bases greater than 16, bbcc uses a multi-character digit method of printing the numbers where each higher base digit is printed as a base 10 number. The multi-character digits are separated by spaces. Each digit contains the number of characters required to represent the base ten value of "obase-1". Since numbers are of arbitrary preci- sion, some numbers may not be printable on a single output line. These long numbers will be split across lines using the "\" as the last character on a line. The maximum number of characters printed per line is 70. Due to the interactive nature of bbcc, printing a number causes the side effect of assigning the printed value to the special variable llaasstt. This allows the user to recover the last value printed without having to retype the expression that printed the number. Assigning to llaasstt is legal and will overwrite the last printed value with the assigned value. The newly assigned value will remain until the next number is printed or another value is assigned to llaasstt. (Some installations may allow the use of a single period (.) which is not part of a number as a short hand notation for for llaasstt.) string The string is printed to the output. Strings start with a dou- ble quote character and contain all characters until the next double quote character. All characters are take literally, including any newline. No newline character is printed after the string. pprriinntt list The print statement (an extension) provides another method of output. The "list" is a list of strings and expressions sepa- rated by commas. Each string or expression is printed in the order of the list. No terminating newline is printed. Expres- sions are evaluated and their value is printed and assigned to the variable llaasstt. Strings in the print statement are printed to the output and may contain special characters. Special char- acters start with the backslash character (\). The special characters recognized by bbcc are "a" (alert or bell), "b" (backspace), "f" (form feed), "n" (newline), "r" (carriage return), "q" (double quote), "t" (tab), and "\" (backslash). Any other character following the backslash will be ignored. { statement_list } This is the compound statement. It allows multiple statements to be grouped together for execution. iiff ( expression ) statement1 [eellssee statement2] The if statement evaluates the expression and executes state- ment1 or statement2 depending on the value of the expression. If the expression is non-zero, statement1 is executed. If statement2 is present and the value of the expression is 0, then statement2 is executed. (The else clause is an extension.) wwhhiillee ( expression ) statement The while statement will execute the statement while the expres- sion is non-zero. It evaluates the expression before each exe- cution of the statement. Termination of the loop is caused by a zero expression value or the execution of a break statement. ffoorr ( [expression1] ; [expression2] ; [expression3] ) statement The for statement controls repeated execution of the statement. Expression1 is evaluated before the loop. Expression2 is evalu- ated before each execution of the statement. If it is non-zero, the statement is evaluated. If it is zero, the loop is termi- nated. After each execution of the statement, expression3 is evaluated before the reevaluation of expression2. If expres- sion1 or expression3 are missing, nothing is evaluated at the point they would be evaluated. If expression2 is missing, it is the same as substituting the value 1 for expression2. (The optional expressions are an extension. POSIX bbcc requires all three expressions.) The following is equivalent code for the for statement: expression1; while (expression2) { statement; expression3; } bbrreeaakk This statement causes a forced exit of the most recent enclosing while statement or for statement. ccoonnttiinnuuee The continue statement (an extension) causes the most recent enclosing for statement to start the next iteration. hhaalltt The halt statement (an extension) is an executed statement that causes the bbcc processor to quit only when it is executed. For example, "if (0 == 1) halt" will not cause bbcc to terminate because the halt is not executed. rreettuurrnn Return the value 0 from a function. (See the section on func- tions.) rreettuurrnn ( expression ) Return the value of the expression from a function. (See the section on functions.) As an extension, the parenthesis are not required. PPSSEEUUDDOO SSTTAATTEEMMEENNTTSS These statements are not statements in the traditional sense. They are not executed statements. Their function is performed at "compile" time. lliimmiittss Print the local limits enforced by the local version of bbcc. This is an extension. qquuiitt When the quit statement is read, the bbcc processor is terminated, regardless of where the quit statement is found. For example, "if (0 == 1) quit" will cause bbcc to terminate. wwaarrrraannttyy Print a longer warranty notice. This is an extension. FFUUNNCCTTIIOONNSS Functions provide a method of defining a computation that can be exe- cuted later. Functions in bbcc always compute a value and return it to the caller. Function definitions are "dynamic" in the sense that a function is undefined until a definition is encountered in the input. That definition is then used until another definition function for the same name is encountered. The new definition then replaces the older definition. A function is defined as follows: ddeeffiinnee _n_a_m_e (( _p_a_r_a_m_e_t_e_r_s )) {{ _n_e_w_l_i_n_e _a_u_t_o___l_i_s_t _s_t_a_t_e_m_e_n_t___l_i_s_t }} A function call is just an expression of the form "_n_a_m_e((_p_a_r_a_m_e_t_e_r_s))". Parameters are numbers or arrays (an extension). In the function defi- nition, zero or more parameters are defined by listing their names sep- arated by commas. All parameters are call by value parameters. Arrays are specified in the parameter definition by the notation "_n_a_m_e[[]]". In the function call, actual parameters are full expressions for number parameters. The same notation is used for passing arrays as for defin- ing array parameters. The named array is passed by value to the func- tion. Since function definitions are dynamic, parameter numbers and types are checked when a function is called. Any mismatch in number or types of parameters will cause a runtime error. A runtime error will also occur for the call to an undefined function. The _a_u_t_o___l_i_s_t is an optional list of variables that are for "local" use. The syntax of the auto list (if present) is "aauuttoo _n_a_m_e, ... ;". (The semicolon is optional.) Each _n_a_m_e is the name of an auto vari- able. Arrays may be specified by using the same notation as used in parameters. These variables have their values pushed onto a stack at the start of the function. The variables are then initialized to zero and used throughout the execution of the function. At function exit, these variables are popped so that the original value (at the time of the function call) of these variables are restored. The parameters are really auto variables that are initialized to a value provided in the function call. Auto variables are different than traditional local variables because if function A calls function B, B may access function A's auto variables by just using the same name, unless function B has called them auto variables. Due to the fact that auto variables and parameters are pushed onto a stack, bbcc supports recursive functions. The function body is a list of bbcc statements. Again, statements are separated by semicolons or newlines. Return statements cause the ter- mination of a function and the return of a value. There are two ver- sions of the return statement. The first form, "rreettuurrnn", returns the value 0 to the calling expression. The second form, "rreettuurrnn (( _e_x_p_r_e_s_- _s_i_o_n ))", computes the value of the expression and returns that value to the calling expression. There is an implied "rreettuurrnn ((00))" at the end of every function. This allows a function to terminate and return 0 with- out an explicit return statement. Functions also change the usage of the variable iibbaassee. All constants in the function body will be converted using the value of iibbaassee at the time of the function call. Changes of iibbaassee will be ignored during the execution of the function except for the standard function rreeaadd, which will always use the current value of iibbaassee for conversion of numbers. Several extensions have been added to functions. First, the format of the definition has been slightly relaxed. The standard requires the opening brace be on the same line as the ddeeffiinnee keyword and all other parts must be on following lines. This version of bbcc will allow any number of newlines before and after the opening brace of the function. For example, the following definitions are legal. define d (n) { return (2*n); } define d (n) { return (2*n); } Functions may be defined as vvooiidd. A void function returns no value and thus may not be used in any place that needs a value. A void function does not produce any output when called by itself on an input line. The key word vvooiidd is placed between the key word ddeeffiinnee and the func- tion name. For example, consider the following session. define py (y) { print "--->", y, "<---", "\n"; } define void px (x) { print "--->", x, "<---", "\n"; } py(1) --->1<--- 0 px(1) --->1<--- Since ppyy is not a void function, the call of ppyy((11)) prints the desired output and then prints a second line that is the value of the function. Since the value of a function that is not given an explicit return statement is zero, the zero is printed. For ppxx((11)), no zero is printed because the function is a void function. Also, call by variable for arrays was added. To declare a call by variable array, the declaration of the array parameter in the function definition looks like "_*_n_a_m_e[[]]". The call to the function remains the same as call by value arrays. MMAATTHH LLIIBBRRAARRYY If bbcc is invoked with the --ll option, a math library is preloaded and the default scale is set to 20. The math functions will calculate their results to the scale set at the time of their call. The math library defines the following functions: s (_x) The sine of x, x is in radians. c (_x) The cosine of x, x is in radians. a (_x) The arctangent of x, arctangent returns radians. l (_x) The natural logarithm of x. e (_x) The exponential function of raising e to the value x. j (_n_,_x) The Bessel function of integer order n of x. EEXXAAMMPPLLEESS In /bin/sh, the following will assign the value of "pi" to the shell variable ppii. _p_i_=_$_(_e_c_h_o _"_s_c_a_l_e_=_1_0_; _4_*_a_(_1_)_" _| _b_c _-_l_) The following is the definition of the exponential function used in the math library. This function is written in POSIX bbcc. _s_c_a_l_e _= _2_0 _/_* _U_s_e_s _t_h_e _f_a_c_t _t_h_a_t _e_^_x _= _(_e_^_(_x_/_2_)_)_^_2 _W_h_e_n _x _i_s _s_m_a_l_l _e_n_o_u_g_h_, _w_e _u_s_e _t_h_e _s_e_r_i_e_s_: _e_^_x _= _1 _+ _x _+ _x_^_2_/_2_! _+ _x_^_3_/_3_! _+ _._._. _*_/ _d_e_f_i_n_e _e_(_x_) _{ _a_u_t_o _a_, _d_, _e_, _f_, _i_, _m_, _v_, _z _/_* _C_h_e_c_k _t_h_e _s_i_g_n _o_f _x_. _*_/ _i_f _(_x_<_0_) _{ _m _= _1 _x _= _-_x _} _/_* _P_r_e_c_o_n_d_i_t_i_o_n _x_. _*_/ _z _= _s_c_a_l_e_; _s_c_a_l_e _= _4 _+ _z _+ _._4_4_*_x_; _w_h_i_l_e _(_x _> _1_) _{ _f _+_= _1_; _x _/_= _2_; _} _/_* _I_n_i_t_i_a_l_i_z_e _t_h_e _v_a_r_i_a_b_l_e_s_. _*_/ _v _= _1_+_x _a _= _x _d _= _1 _f_o_r _(_i_=_2_; _1_; _i_+_+_) _{ _e _= _(_a _*_= _x_) _/ _(_d _*_= _i_) _i_f _(_e _=_= _0_) _{ _i_f _(_f_>_0_) _w_h_i_l_e _(_f_-_-_) _v _= _v_*_v_; _s_c_a_l_e _= _z _i_f _(_m_) _r_e_t_u_r_n _(_1_/_v_)_; _r_e_t_u_r_n _(_v_/_1_)_; _} _v _+_= _e _} _} The following is code that uses the extended features of bbcc to imple- ment a simple program for calculating checkbook balances. This program is best kept in a file so that it can be used many times without having to retype it at every use. _s_c_a_l_e_=_2 _p_r_i_n_t _"_\_n_C_h_e_c_k _b_o_o_k _p_r_o_g_r_a_m_!_\_n_" _p_r_i_n_t _" _R_e_m_e_m_b_e_r_, _d_e_p_o_s_i_t_s _a_r_e _n_e_g_a_t_i_v_e _t_r_a_n_s_a_c_t_i_o_n_s_._\_n_" _p_r_i_n_t _" _E_x_i_t _b_y _a _0 _t_r_a_n_s_a_c_t_i_o_n_._\_n_\_n_" _p_r_i_n_t _"_I_n_i_t_i_a_l _b_a_l_a_n_c_e_? _"_; _b_a_l _= _r_e_a_d_(_) _b_a_l _/_= _1 _p_r_i_n_t _"_\_n_" _w_h_i_l_e _(_1_) _{ _"_c_u_r_r_e_n_t _b_a_l_a_n_c_e _= _"_; _b_a_l _"_t_r_a_n_s_a_c_t_i_o_n_? _"_; _t_r_a_n_s _= _r_e_a_d_(_) _i_f _(_t_r_a_n_s _=_= _0_) _b_r_e_a_k_; _b_a_l _-_= _t_r_a_n_s _b_a_l _/_= _1 _} _q_u_i_t The following is the definition of the recursive factorial function. _d_e_f_i_n_e _f _(_x_) _{ _i_f _(_x _<_= _1_) _r_e_t_u_r_n _(_1_)_; _r_e_t_u_r_n _(_f_(_x_-_1_) _* _x_)_; _} RREEAADDLLIINNEE AANNDD LLIIBBEEDDIITT OOPPTTIIOONNSS GNU bbcc can be compiled (via a configure option) to use the GNU rreeaaddlliinnee input editor library or the BSD lliibbeeddiitt library. This allows the user to do editing of lines before sending them to bbcc. It also allows for a history of previous lines typed. When this option is selected, bbcc has one more special variable. This special variable, hhiissttoorryy is the num- ber of lines of history retained. For rreeaaddlliinnee, a value of -1 means that an unlimited number of history lines are retained. Setting the value of hhiissttoorryy to a positive number restricts the number of history lines to the number given. The value of 0 disables the history fea- ture. The default value is 100. For more information, read the user manuals for the GNU rreeaaddlliinnee, hhiissttoorryy and BSD lliibbeeddiitt libraries. One can not enable both rreeaaddlliinnee and lliibbeeddiitt at the same time. DDIIFFFFEERREENNCCEESS This version of bbcc was implemented from the POSIX P1003.2/D11 draft and contains several differences and extensions relative to the draft and traditional implementations. It is not implemented in the traditional way using _d_c_(_1_)_. This version is a single process which parses and runs a byte code translation of the program. There is an "undocu- mented" option (-c) that causes the program to output the byte code to the standard output instead of running it. It was mainly used for debugging the parser and preparing the math library. A major source of differences is extensions, where a feature is extended to add more functionality and additions, where new features are added. The following is the list of differences and extensions. environment This version does not conform to the POSIX standard in the pro- cessing of the LANG environment variable and all environment variables starting with LC_. names Traditional and POSIX bbcc have single letter names for functions, variables and arrays. They have been extended to be multi-char- acter names that start with a letter and may contain letters, numbers and the underscore character. Strings Strings are not allowed to contain NUL characters. POSIX says all characters must be included in strings. last POSIX bbcc does not have a llaasstt variable. Some implementations of bbcc use the period (.) in a similar way. comparisons POSIX bbcc allows comparisons only in the if statement, the while statement, and the second expression of the for statement. Also, only one relational operation is allowed in each of those statements. if statement, else clause POSIX bbcc does not have an else clause. for statement POSIX bbcc requires all expressions to be present in the for statement. &&, ||, ! POSIX bbcc does not have the logical operators. read function POSIX bbcc does not have a read function. print statement POSIX bbcc does not have a print statement . continue statement POSIX bbcc does not have a continue statement. return statement POSIX bbcc requires parentheses around the return expression. array parameters POSIX bbcc does not (currently) support array parameters in full. The POSIX grammar allows for arrays in function definitions, but does not provide a method to specify an array as an actual parameter. (This is most likely an oversight in the grammar.) Traditional implementations of bbcc have only call by value array parameters. function format POSIX bbcc requires the opening brace on the same line as the ddeeffiinnee key word and the aauuttoo statement on the next line. =+, =-, =*, =/, =%, =^ POSIX bbcc does not require these "old style" assignment operators to be defined. This version may allow these "old style" assign- ments. Use the limits statement to see if the installed version supports them. If it does support the "old style" assignment operators, the statement "a =- 1" will decrement aa by 1 instead of setting aa to the value -1. spaces in numbers Other implementations of bbcc allow spaces in numbers. For exam- ple, "x=1 3" would assign the value 13 to the variable x. The same statement would cause a syntax error in this version of bbcc. errors and execution This implementation varies from other implementations in terms of what code will be executed when syntax and other errors are found in the program. If a syntax error is found in a function definition, error recovery tries to find the beginning of a statement and continue to parse the function. Once a syntax error is found in the function, the function will not be callable and becomes undefined. Syntax errors in the interac- tive execution code will invalidate the current execution block. The execution block is terminated by an end of line that appears after a complete sequence of statements. For example, a = 1 b = 2 has two execution blocks and { a = 1 b = 2 } has one execution block. Any runtime error will terminate the execu- tion of the current execution block. A runtime warning will not termi- nate the current execution block. Interrupts During an interactive session, the SIGINT signal (usually gener- ated by the control-C character from the terminal) will cause execution of the current execution block to be interrupted. It will display a "runtime" error indicating which function was interrupted. After all runtime structures have been cleaned up, a message will be printed to notify the user that bbcc is ready for more input. All previously defined functions remain defined and the value of all non-auto variables are the value at the point of interruption. All auto variables and function parame- ters are removed during the clean up process. During a non- interactive session, the SIGINT signal will terminate the entire run of bbcc. LLIIMMIITTSS The following are the limits currently in place for this bbcc processor. Some of them may have been changed by an installation. Use the limits statement to see the actual values. BC_BASE_MAX The maximum output base is currently set at 999. The maximum input base is 16. BC_DIM_MAX This is currently an arbitrary limit of 65535 as distributed. Your installation may be different. BC_SCALE_MAX The number of digits after the decimal point is limited to INT_MAX digits. Also, the number of digits before the decimal point is limited to INT_MAX digits. BC_STRING_MAX The limit on the number of characters in a string is INT_MAX characters. exponent The value of the exponent in the raise operation (^) is limited to LONG_MAX. variable names The current limit on the number of unique names is 32767 for each of simple variables, arrays and functions. EENNVVIIRROONNMMEENNTT VVAARRIIAABBLLEESS The following environment variables are processed by bbcc: POSIXLY_CORRECT This is the same as the --ss option. BC_ENV_ARGS This is another mechanism to get arguments to bbcc. The format is the same as the command line arguments. These arguments are processed first, so any files listed in the environment argu- ments are processed before any command line argument files. This allows the user to set up "standard" options and files to be processed at every invocation of bbcc. The files in the envi- ronment variables would typically contain function definitions for functions the user wants defined every time bbcc is run. BC_LINE_LENGTH This should be an integer specifying the number of characters in an output line for numbers. This includes the backslash and new- line characters for long numbers. As an extension, the value of zero disables the multi-line feature. Any other value of this variable that is less than 3 sets the line length to 70. DDIIAAGGNNOOSSTTIICCSS If any file on the command line can not be opened, bbcc will report that the file is unavailable and terminate. Also, there are compile and run time diagnostics that should be self-explanatory. BBUUGGSS Error recovery is not very good yet. Email bug reports to bbuugg--bbcc@@ggnnuu..oorrgg. Be sure to include the word ``bc'' somewhere in the ``Subject:'' field. AAUUTTHHOORR Philip A. Nelson philnelson@acm.org AACCKKNNOOWWLLEEDDGGEEMMEENNTTSS The author would like to thank Steve Sommars (Steve.Sommars@att.com) for his extensive help in testing the implementation. Many great sug- gestions were given. This is a much better product due to his involve- ment. GNU Project 2006-06-11 bc(1)