-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsx_expr.c
121 lines (86 loc) · 1.93 KB
/
sx_expr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* sx_expr.c
EXPR for Samarux.
Computes a single expression and outputs the result to the console.
Copyright (c) 2021 Miguel I. Garcia Lopez.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
Usage:
expr number1 operator number2
Options:
None.
Valid operators are:
add = add
sub = subtract
mul = multiply
div = divide
mod = modulo
Examples:
expr 4 add 3
expr 5 sub 1
Notes:
The numbers and the result are 16 bit signed integers,
from -32,768 to +32,767.
Changes:
12 Sep 2021 : 1.00 : 1st version.
*/
/* Built-in or external
--------------------
*/
#ifdef SX_SAMARUX
#define SX_EXPR
#else
#include "samarux.h"
#define ExprMain main
#endif
ExprMain(argc, argv)
int argc, argv[];
{
int n1, n2, op, result;
/* Check arguments */
if(argc != 4)
{
return ErrorPars();
}
/* Get arguments */
n1 = atoi(argv[1]); /* FIXME -- check it's a number */
op = argv[2];
n2 = atoi(argv[3]); /* FIXME -- check it's a number */
/* Perform operation */
if(!strcmp("add", op))
{
result = n1 + n2;
}
else if(!strcmp("sub", op))
{
result = n1 - n2;
}
else if(!strcmp("mul", op))
{
result = n1 * n2;
}
else if(!strcmp("div", op))
{
result = n1 / n2;
}
else if(!strcmp("mod", op))
{
result = n1 % n2;
}
else
{
return ErrorIll();
}
/* Output result */
printf("%d", result);
/* Success */
return 0;
}