Changes between Version 3 and Version 4 of FilesystemAPITutorial


Ignore:
Timestamp:
2017-04-09T07:41:11Z (7 years ago)
Author:
Jakub Jermář
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FilesystemAPITutorial

    v3 v4  
    120120}}}
    121121
    122 Finally, we can write our message. This time we use a compound literal to pass our initial position.
     122Finally, we can write our message. This time we use a compound literal to pass our initial position:
    123123
     124{{{
    124125char greeting[] = "Hello world!";
    125126ssize_t size = vfs_write(hello, (aoff64_t []) {0}, greeting, sizeof(greeting));