summaryrefslogtreecommitdiffhomepage
path: root/include/GenericsLibrary/io.nhh
diff options
context:
space:
mode:
Diffstat (limited to 'include/GenericsLibrary/io.nhh')
-rw-r--r--include/GenericsLibrary/io.nhh16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/GenericsLibrary/io.nhh b/include/GenericsLibrary/io.nhh
new file mode 100644
index 0000000..d99ae83
--- /dev/null
+++ b/include/GenericsLibrary/io.nhh
@@ -0,0 +1,16 @@
+// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
+
+#ifndef NECTAR_GL_IO_NHH
+#define NECTAR_GL_IO_NHH
+
+import printf;
+
+const writefn(let fmt, let args)
+{
+ printf(fmt, {args});
+}
+
+#endif