Added afb-helpers-utils.h 81/14081/3
authorThierry Bultel <thierry.bultel@iot.bzh>
Thu, 24 May 2018 08:03:20 +0000 (10:03 +0200)
committerThierry Bultel <thierry.bultel@iot.bzh>
Fri, 25 May 2018 12:12:22 +0000 (14:12 +0200)
Added this file to some useful macros, the first one here is INT_STR_MAX that
permits to get rid of a warning with gcc >= 7.2.0

Change-Id: I768d216ab5494d346d5ee6e0df66f93410bfab57
Signed-off-by: Thierry Bultel <thierry.bultel@iot.bzh>
afb-helpers-utils.h [new file with mode: 0644]

diff --git a/afb-helpers-utils.h b/afb-helpers-utils.h
new file mode 100644 (file)
index 0000000..d180f08
--- /dev/null
@@ -0,0 +1,17 @@
+#ifndef AFB_HELPERS_UTILS_H
+#define AFB_HELPERS_UTILS_H
+
+#include <limits.h>
+
+#define xstr(s) str(s)
+#define str(s) #s
+
+/* with gcc >= 7.2.0, this macro is useful when printing an int with snprintf:
+ *
+ * char[INT_STR_MAX]; // smaller value leads to a warning
+ * snprintf(targetS, sizeof (targetS), "%d", target);
+ * */
+
+#define INT_STR_MAX sizeof(xstr(INT_MAX))
+
+#endif /* AFB_HELPERS_UTILS_H */