summaryrefslogtreecommitdiff
path: root/include/SDK/OS/OSAlloc.h
diff options
context:
space:
mode:
authorRevo <projectrevotpp@hotmail.com>2020-09-13 12:35:03 -0400
committerGitHub <noreply@github.com>2020-09-13 12:35:03 -0400
commit8a7bfac7d3a81b34be131c76a98cac1f4cf9cb82 (patch)
treed2a503a323ae06264ebab085d9e3108f7c5eb33c /include/SDK/OS/OSAlloc.h
parent11effce5c0a8c617662608d05cdf906ff8e73d2c (diff)
parent9c1b7dcd0a71137bd1193e5753a92607e2b301ad (diff)
Merge pull request #39 from red031000/master
split OSAudioSystem and decomp first func
Diffstat (limited to 'include/SDK/OS/OSAlloc.h')
-rw-r--r--include/SDK/OS/OSAlloc.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/SDK/OS/OSAlloc.h b/include/SDK/OS/OSAlloc.h
new file mode 100644
index 0000000..150a5f8
--- /dev/null
+++ b/include/SDK/OS/OSAlloc.h
@@ -0,0 +1,22 @@
+#ifndef POKEREVO_OSALLOC_H
+#define POKEREVO_OSALLOC_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct Cell Cell;
+
+struct Cell {
+ Cell* prev;
+ Cell* next;
+ long size;
+};
+
+Cell *DLInsert(Cell *original, Cell *inserted);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_OSALLOC_H