summaryrefslogtreecommitdiff
path: root/lib/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/test.c')
-rw-r--r--lib/test.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/test.c b/lib/test.c
index 78a0d02..70b32fa 100644
--- a/lib/test.c
+++ b/lib/test.c
@@ -7,3 +7,18 @@ dp_hello_world()
{
printf("Hello World\n");
}
+
+int
+dp_get_num()
+{
+ return 1;
+}
+
+vec2
+dp_get_vec2()
+{
+ vec2 vec;
+ vec.x = 1.0f;
+ vec.y = 2.5f;
+ return vec;
+}