Added strops and got FileStore test into a useful state.

This commit is contained in:
2016-06-06 20:44:11 -05:00
parent c822a7564a
commit d849f2c918
10 changed files with 68 additions and 13 deletions
+12 -3
View File
@@ -1,10 +1,11 @@
/*
* Copyright 2015 gtalent2@gmail.com
* Copyright 2015 - 2016 gtalent2@gmail.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <_strops.hpp>
#include <filestore.hpp>
using namespace wombat::fs;
@@ -15,7 +16,15 @@ int main() {
char out[6];
uint32_t err;
FileStore32 fs(volume, volume + size, &err);
fs.write(42, (uint8_t*) "Hello", 6);
err = fs.read(42, (uint8_t*) out, nullptr);
fs.write(42, (void*) "Hello", 6);
err = fs.read(42, (char*) out, nullptr);
if (err) {
return err;
}
err = strcmp("Hello", out);
return err;
}