aboutsummaryrefslogtreecommitdiff
path: root/wbg-features.h
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2024-08-02 15:36:38 +0200
committerDaniel Eklöf <daniel@ekloef.se>2024-08-02 15:36:38 +0200
commit65e94ffae271dc9ef75f5227d8ec647b1dd428bd (patch)
tree5ef0dc58dcac9f4c8709186b8c5ce0d5c0d7a82e /wbg-features.h
parent0ed574cdf5bd31999145dd025ac110c0880c012f (diff)
downloadwbg-65e94ffae271dc9ef75f5227d8ec647b1dd428bd.tar.gz
wbg: use getopt() for option parsing, add help and version options
Diffstat (limited to 'wbg-features.h')
-rw-r--r--wbg-features.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/wbg-features.h b/wbg-features.h
new file mode 100644
index 0000000..b11da92
--- /dev/null
+++ b/wbg-features.h
@@ -0,0 +1,47 @@
+#pragma once
+#include <stdbool.h>
+
+static inline bool feature_png(void)
+{
+#if defined(WBG_HAVE_PNG) && WBG_HAVE_PNG
+ return true;
+#else
+ return false;
+#endif
+}
+
+static inline bool feature_jpg(void)
+{
+#if defined(WBG_HAVE_JPG) && WBG_HAVE_JPG
+ return true;
+#else
+ return false;
+#endif
+}
+
+static inline bool feature_webp(void)
+{
+#if defined(WBG_HAVE_WEBP) && WBG_HAVE_WEBP
+ return true;
+#else
+ return false;
+#endif
+}
+
+static inline bool feature_svg(void)
+{
+#if defined(WBG_HAVE_SVG) && WBG_HAVE_SVG
+ return true;
+#else
+ return false;
+#endif
+}
+
+static inline bool feature_jxl(void)
+{
+#if defined(WBG_HAVE_JXL) && WBG_HAVE_JXL
+ return true;
+#else
+ return false;
+#endif
+}