Skip to content

Instantly share code, notes, and snippets.

@zzztuzzz
zzztuzzz / shell.c
Created July 18, 2016 18:21
System Programming 2016 shell in Clang
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
/*
====================定数を定義=====================
***********入力値における文字数の最大値設定***********
*/
#define MAX_ARGS 50