aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-2/lib/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/chapter-2/lib/lib.h')
-rw-r--r--tutorial/chapter-2/lib/lib.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tutorial/chapter-2/lib/lib.h b/tutorial/chapter-2/lib/lib.h
new file mode 100644
index 000000000..efc56ae0b
--- /dev/null
+++ b/tutorial/chapter-2/lib/lib.h
@@ -0,0 +1,11 @@
+//! [0]
+
+// lib/lib.h
+#ifndef LIB_H
+#define LIB_H
+
+const char *get_string();
+
+#endif // LIB_H
+
+//! [0]