extern "C" so that I can also use c++
[vkrt] / src / util.h
index 97abe8a..d4e9d71 100644 (file)
@@ -3,6 +3,10 @@
 
 #include <stdbool.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 char *
 sdr_load(const char *fname, int *sz);
 
@@ -11,4 +15,8 @@ img_dump_rgba(const char *fname,
               int w, int h,
               unsigned char *data);
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* UTIL_H */