File Management
Handles the creation and mangement of binary file handles.
testify_file_load
THandle *testify_file_load(char *path);
Description: Opens a Testify handle from a file name for reading.testify_file_save
THandle *testify_file_save(char *path);
Description: Opens a Testify handle from a file name for writing.testify_file_size
uint64 testify_file_size(THandle *handle);
Description: Returns the size of the file.testify_file_position_set
void testify_file_position_set(THandle *handle, uint64 pos);
Description: Sets the current write position to "pos".testify_file_position_get
uint64 testify_file_position_get(THandle *handle);
Description: Returns the current write position.