I can't figure out if I am doing something wrong, or this is messed up. When I just do this
dbOpenToWrite(1,"test.txt");
dbWriteFloat(1,1000);
dbCloseFile(1);
and in test.txt it looks like this
zf
or something very close.
As far as dbReadFloat goes, I'm not having any luck either. If I do this
char *test;
dbOpenToRead(1,"test.txt");
test=dbReadFloat(1);
dbCloseFile(1);
then I come up with an extremely large number that is no where close to what it actually was.
I would just like to know what's going on here. Thanks
common people are walking in line.