diff options
author | Matt Strapp <strap012@umn.edu> | 2020-11-02 11:38:27 -0600 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-11-02 11:38:27 -0600 |
commit | 051a65fae594e0f59d324e376a1d95f466be91c9 (patch) | |
tree | e9dcc1feb1484cc2a3ac2a42fffe8c0c46c98af6 | |
parent | Add link (diff) | |
download | csci4061-051a65fae594e0f59d324e376a1d95f466be91c9.tar csci4061-051a65fae594e0f59d324e376a1d95f466be91c9.tar.gz csci4061-051a65fae594e0f59d324e376a1d95f466be91c9.tar.bz2 csci4061-051a65fae594e0f59d324e376a1d95f466be91c9.tar.lz csci4061-051a65fae594e0f59d324e376a1d95f466be91c9.tar.xz csci4061-051a65fae594e0f59d324e376a1d95f466be91c9.tar.zst csci4061-051a65fae594e0f59d324e376a1d95f466be91c9.zip |
Add ideas
-rw-r--r-- | P2/lib/utils.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/P2/lib/utils.c b/P2/lib/utils.c index b9454bb..cb43574 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -46,8 +46,10 @@ void sendChunkData(char *inputFile, int nMappers) { Maybe copy message.msgText into a new array, do the backwards iteration, and then replace message.msgText with the temp array? Or something? */ - //fseek()?? + //fseek()?? (HIGH LEVEL) //https://www.tutorialspoint.com/c_standard_library/c_function_fseek.htm + //lseek()?? (LOW LEVEL) + //http://crasseux.com/books/ctutorial/Finding-file-positions-at-a-low-level.html // TODO! help |