Sha256: 26783541181b20b9fb58207488cec9973939fda782ac3f1e1749913efa05a80e
Contents?: true
Size: 319 Bytes
Versions: 6
Compression:
Stored size: 319 Bytes
Contents
#include <unistd.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <fcntl.h> /* * read from stdin and write to stdout */ int main(int argc, char **argv) { char buffer[4096]; memset(buffer,0,sizeof(buffer)); read(0,buffer,sizeof(buffer)); write(1,buffer,strlen(buffer)); return(0); }
Version data entries
6 entries across 6 versions & 1 rubygems