1
0
mirror of https://github.com/pevans/erc-c.git synced 2025-07-04 22:24:01 +00:00

Add missing docblocks

This commit is contained in:
Peter Evans
2018-02-03 21:56:27 -06:00
parent 67f943d891
commit 2bdc921b76
2 changed files with 19 additions and 0 deletions

View File

@ -286,6 +286,11 @@ vm_segment_fread(vm_segment *segment, FILE *stream, size_t offset, size_t len)
return OK;
}
/*
* Write the contents of a segment into a given file stream, using an
* offset and a length for the contents to write. If this operation
* works out, we return OK.
*/
int
vm_segment_fwrite(vm_segment *seg, FILE *stream, size_t off, size_t len)
{