aboutsummaryrefslogtreecommitdiffstats
path: root/csrc
diff options
context:
space:
mode:
Diffstat (limited to 'csrc')
-rw-r--r--csrc/smith.c15
-rw-r--r--csrc/smith.h6
2 files changed, 21 insertions, 0 deletions
diff --git a/csrc/smith.c b/csrc/smith.c
new file mode 100644
index 0000000..4ff5553
--- /dev/null
+++ b/csrc/smith.c
@@ -0,0 +1,15 @@
+/*********************************/
+/* SMITH ( // */
+/* smith ( )/ */
+/* by salade )(/ */
+/* ________________ ( /) */
+/* ()__)____________))))) :^} */
+/*********************************/
+
+#include "smith.h"
+
+char *
+mr_smith()
+{
+ return ("---SMITH_V0.0.0---");
+}
diff --git a/csrc/smith.h b/csrc/smith.h
new file mode 100644
index 0000000..b342e54
--- /dev/null
+++ b/csrc/smith.h
@@ -0,0 +1,6 @@
+#ifndef SMITH_H_
+#define SMITH_H_
+
+char * mr_smith();
+
+#endif // SMITH_H_