Created
September 8, 2022 23:13
-
-
Save eminetto/7ff429c28cb48f663314bb025c585ce3 to your computer and use it in GitHub Desktop.
Módulo profundo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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