Add contiguous linked list type for the new file store

This commit is contained in:
2018-02-18 01:03:14 -06:00
parent 193492c518
commit 21e72a0513
6 changed files with 345 additions and 1 deletions

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;
}
},
},
};