axle OS
x86_32 UNIX-like hobby OS
read.h
1 #ifndef READ_H
2 #define READ_H
3 
4 #include <stdint.h>
5 #include <std/std.h>
6 
7 uint32_t read(int fd, void* buf, uint32_t count);
8 
9 #endif