setexpr: Convert to use a struct for values
authorSimon Glass <sjg@chromium.org>
Sun, 1 Nov 2020 21:15:43 +0000 (14:15 -0700)
committerTom Rini <trini@konsulko.com>
Tue, 1 Dec 2020 15:33:38 +0000 (10:33 -0500)
commitf66bee41abe8288e5fd6aa6b61ff23c5f8a2c851
tree5b4baf50efcea1d9666f139b181a5972c7fa23bb
parent8f4aa7ddb908369db971d4c31850ca1eef2e3687
setexpr: Convert to use a struct for values

At present a ulong is used to hold operand values. This means that
strings cannot be used. While most operations are not useful for strings,
concatenation is. As a starting point to supporting strings, convert the
code to use a struct instead of a ulong for operands.

Signed-off-by: Simon Glass <sjg@chromium.org>
cmd/setexpr.c