aboutsummaryrefslogtreecommitdiff
path: root/cmd/printf.h
diff options
context:
space:
mode:
authorRoland Gaudig2021-07-23 12:29:21 +0000
committerTom Rini2021-07-27 14:50:47 -0400
commitf4f8d8bb1abc79c4186ee8dc2ea536d62c6cb149 (patch)
treeffb09d738a6f68edb543be8eac0f424ec15cd4d3 /cmd/printf.h
parent6244cda4f32cb95f66de2a61ef728f325514f8f6 (diff)
cmd: setexpr: add format string handling
Add format string handling operator to the setexpr command. It allows to use C or Bash like format string expressions to be evaluated with the result being stored inside the environment variable name. setexpr <name> fmt <format> [value]... The following example setexpr foo fmt "%d, 0x%x" 0x100 ff will result in $foo being set to "256, 0xff". Signed-off-by: Roland Gaudig <roland.gaudig@weidmueller.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/printf.h')
-rw-r--r--cmd/printf.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/printf.h b/cmd/printf.h
new file mode 100644
index 00000000000..dcaff6d0972
--- /dev/null
+++ b/cmd/printf.h
@@ -0,0 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+
+#ifndef __PRINTF_H
+#define __PRINTF_H
+
+int printf_setexpr(char *str, size_t size, int argc, char *const *argv);
+
+#endif