Imported from ../bash-2.05b.tar.gz.
[platform/upstream/bash.git] / builtins / let.def
1 This file is let.def, from which is created let.c.
2 It implements the builtin "let" in Bash.
3
4 Copyright (C) 1987-2002 Free Software Foundation, Inc.
5
6 This file is part of GNU Bash, the Bourne Again SHell.
7
8 Bash is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 Bash is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License along
19 with Bash; see the file COPYING.  If not, write to the Free Software
20 Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
21
22 $BUILTIN let
23 $FUNCTION let_builtin
24 $PRODUCES let.c
25 $SHORT_DOC let arg [arg ...]
26 Each ARG is an arithmetic expression to be evaluated.  Evaluation
27 is done in fixed-width integers with no check for overflow, though
28 division by 0 is trapped and flagged as an error.  The following
29 list of operators is grouped into levels of equal-precedence operators.
30 The levels are listed in order of decreasing precedence.
31
32         id++, id--      variable post-increment, post-decrement
33         ++id, --id      variable pre-increment, pre-decrement
34         -, +            unary minus, plus
35         !, ~            logical and bitwise negation
36         **              exponentiation
37         *, /, %         multiplication, division, remainder
38         +, -            addition, subtraction
39         <<, >>          left and right bitwise shifts
40         <=, >=, <, >    comparison
41         ==, !=          equality, inequality
42         &               bitwise AND
43         ^               bitwise XOR
44         |               bitwise OR
45         &&              logical AND
46         ||              logical OR
47         expr ? expr : expr
48                         conditional expression
49         =, *=, /=, %=,
50         +=, -=, <<=, >>=,
51         &=, ^=, |=      assignment
52
53 Shell variables are allowed as operands.  The name of the variable
54 is replaced by its value (coerced to a fixed-width integer) within
55 an expression.  The variable need not have its integer attribute
56 turned on to be used in an expression.
57
58 Operators are evaluated in order of precedence.  Sub-expressions in
59 parentheses are evaluated first and may override the precedence
60 rules above.
61
62 If the last ARG evaluates to 0, let returns 1; 0 is returned
63 otherwise.
64 $END
65
66 #include <config.h>
67
68 #if defined (HAVE_UNISTD_H)
69 #  ifdef _MINIX
70 #    include <sys/types.h>
71 #  endif
72 #  include <unistd.h>
73 #endif
74
75 #include "../shell.h"
76 #include "common.h"
77
78 /* Arithmetic LET function. */
79 int
80 let_builtin (list)
81      WORD_LIST *list;
82 {
83   intmax_t ret;
84   int expok;
85
86   /* Skip over leading `--' argument. */
87   if (list && list->word && ISOPTION (list->word->word, '-'))
88     list = list->next;
89
90   if (list == 0)
91     {
92       builtin_error ("expression expected");
93       return (EXECUTION_FAILURE);
94     }
95
96   for (; list; list = list->next)
97     {
98       ret = evalexp (list->word->word, &expok);
99       if (expok == 0)
100         return (EXECUTION_FAILURE);
101     }
102
103   return ((ret == 0) ? EXECUTION_FAILURE : EXECUTION_SUCCESS);
104 }
105
106 #ifdef INCLUDE_UNUSED
107 int
108 exp_builtin (list)
109      WORD_LIST *list;
110 {
111   char *exp;
112   intmax_t ret;
113   int expok;
114
115   if (list == 0)
116     {
117       builtin_error ("expression expected");
118       return (EXECUTION_FAILURE);
119     }
120
121   exp = string_list (list);
122   ret = evalexp (exp, &expok);
123   (void)free (exp);
124   return (((ret == 0) || (expok == 0)) ? EXECUTION_FAILURE : EXECUTION_SUCCESS);
125 }
126 #endif