summaryrefslogtreecommitdiff
path: root/stalloc.h
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2009-02-17 02:28:08 +0100
committerPixel <pixel@nobis-crew.org>2009-02-17 02:28:08 +0100
commit2661812e3fc3f7385a5f8343172afc173f594efe (patch)
tree714f07eee0a74b1644df67f7c618ff7e0dc168f0 /stalloc.h
parent5b99194c58385215cad973281a6f162d187ab971 (diff)
Adding stalloc system.
Diffstat (limited to 'stalloc.h')
-rw-r--r--stalloc.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/stalloc.h b/stalloc.h
new file mode 100644
index 0000000..4d5cbce
--- /dev/null
+++ b/stalloc.h
@@ -0,0 +1,8 @@
+#ifndef __STALLOC_H__
+#define __STALLOC_H__
+
+void * st_alloc(size_t s);
+char * st_strdup(const char * src);
+void st_shutdown();
+
+#endif