Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created September 8, 2022 23:13
Show Gist options
  • Save eminetto/7ff429c28cb48f663314bb025c585ce3 to your computer and use it in GitHub Desktop.
Save eminetto/7ff429c28cb48f663314bb025c585ce3 to your computer and use it in GitHub Desktop.
Módulo profundo
int open(const char* path, int flags, mode_t permissions);
int close(int fd);
ssize_t read(int fd, void* buffer, size_t count);
ssize_t write(int fd, const void* buffer, size_t count);
off_t lseek(int fd, off_t offset, int referencePosition);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment