Add contiguous linked list type for the new file store

(synced from 21e72a0513)
This commit is contained in:
2018-02-18 01:03:14 -06:00
parent 08e0d69fb6
commit 32a720aec7
6 changed files with 345 additions and 1 deletions
+10
View File
@@ -13,6 +13,7 @@
#include <string>
#include <ox/fs/fs.hpp>
#include <ox/std/std.hpp>
#include <ox/fs/filestore/linkedlist.hpp>
using namespace std;
using namespace ox;
@@ -326,6 +327,15 @@ map<string, int(*)(string)> tests = {
return retval;
}
},
{
"LinkedList::insert",
[](string) {
ox::fs::LinkedList<uint32_t> list;
list.malloc(50);
list.firstItem();
return 0;
}
},
},
};