Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/learning/c/RCU/cat/

Makefile /abh/learning/c/RCU/cat/Makefile
70 Views
0 Comments

cat: main.c
gcc main.c -o cat

test: cat
./cat test/test.txt

cat /abh/learning/c/RCU/cat/main.c
173 Views
0 Comments
/* cat */

#define POSIX_C_SOURCE 200809L

#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#include <unistd.h