diff options
author | Max <mparisi@stevens.edu> | 2020-09-16 13:27:01 -0400 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-09-16 13:27:01 -0400 |
commit | 7186cb8a4161764b8b51a4917cb9040a53f42142 (patch) | |
tree | 9e651e8d9791f5000a48f002568facf73bcf8cd8 /include/nonport.h | |
parent | 319dd22af1f7b3d8ba47cdd67dd18a3bd8e01ed2 (diff) |
ArrayNew, Free, Length, Nth and Append. Labeling and updates to heaaders
Diffstat (limited to 'include/nonport.h')
-rw-r--r-- | include/nonport.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/nonport.h b/include/nonport.h new file mode 100644 index 0000000..2cc5146 --- /dev/null +++ b/include/nonport.h @@ -0,0 +1,16 @@ +#ifndef POKEREVO_NONPORT_H
+#define POKEREVO_NONPORT_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void *gsimalloc(u32 sz);
+
+void gsifree(void *ptr);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_NONPORT_H
|