Skip to content
Snippets Groups Projects
T2.c 276 B
Newer Older
antux18's avatar
antux18 committed
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>

int main(int argc, char * argv[]){

 if(argc<3){
 printf("Usage ./T2.o folder_path link_name\n");
 }

//TODO -- implement your code here;

 return 0;
}