From c2bf08c74556b25317b5d381bd986e8b96b68d3f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EC=9D=B4=EC=9E=A5=EC=9B=90?= <wkddnjs3268@ajou.ac.kr>
Date: Thu, 6 Aug 2020 16:34:34 +0900
Subject: [PATCH] Init

---
 8.3/input_data     |  1 -
 8.3/output_data    |  2 --
 README.md          | 11 -----------
 three_files/func.c | 11 -----------
 three_files/func.h |  3 ---
 three_files/main.c | 18 ------------------
 6 files changed, 46 deletions(-)
 delete mode 100644 8.3/input_data
 delete mode 100644 8.3/output_data
 delete mode 100644 README.md
 delete mode 100644 three_files/func.c
 delete mode 100644 three_files/func.h
 delete mode 100644 three_files/main.c

diff --git a/8.3/input_data b/8.3/input_data
deleted file mode 100644
index 25f412a..0000000
--- a/8.3/input_data
+++ /dev/null
@@ -1 +0,0 @@
--200
diff --git a/8.3/output_data b/8.3/output_data
deleted file mode 100644
index 3bb9c68..0000000
--- a/8.3/output_data
+++ /dev/null
@@ -1,2 +0,0 @@
-Hello, World -200      
-Error: It is negative
diff --git a/README.md b/README.md
deleted file mode 100644
index 9364e1e..0000000
--- a/README.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# battle_c
-
-## Jangwon Lee - Team 1
-
-실전코딩2 실습
-
-## printf
-
-### stdio.h
-
-* stderr, stdout, stdin에 대해서 배움
\ No newline at end of file
diff --git a/three_files/func.c b/three_files/func.c
deleted file mode 100644
index 8f2a8a6..0000000
--- a/three_files/func.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "func.h"
-
-int func1(int a)
-{
-	return (a * 10);
-}
-
-int func2(int a)
-{
-	return (a * 2);
-}
\ No newline at end of file
diff --git a/three_files/func.h b/three_files/func.h
deleted file mode 100644
index 0aa7479..0000000
--- a/three_files/func.h
+++ /dev/null
@@ -1,3 +0,0 @@
-#pragma once
-#define DF(a) ((a)*(a))
-extern int func1(int x);
\ No newline at end of file
diff --git a/three_files/main.c b/three_files/main.c
deleted file mode 100644
index 2f2c882..0000000
--- a/three_files/main.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <stdio.h>
-#include "func.h"
-
-int func_name_or_id()
-{
-#ifdef PRINT_ID
-	printf("201920756");
-	return 0;
-#else
-	printf("�����");
-	return 1;
-#endif
-}
-
-int main()
-{
-	func_name_or_id();
-}
-- 
GitLab