From 927cfdb37abcf71edab545b2ffc59349cde3a7f4 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Tue, 27 Feb 2018 09:45:17 -0500
Subject: [PATCH] Create initial files

---
 .gitignore |  1 +
 Main.c     | 44 ++++++++++++++++++++++++++++++++++++++++++++
 makefile   |  2 ++
 3 files changed, 47 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 Main.c
 create mode 100644 makefile

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..88ba23d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+a4
diff --git a/Main.c b/Main.c
new file mode 100644
index 0000000..52269b3
--- /dev/null
+++ b/Main.c
@@ -0,0 +1,44 @@
+/**
+ * Brandon Rodriguez
+ * CS 4540
+ * 02-27-18
+ * a4 (Assignment 4)
+ */
+
+
+/**
+ * Description:
+ *
+ */
+
+
+/**
+ * Known Issues:
+ *
+ */
+
+
+// Import headers.
+#include <ctype.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+
+// Constant Defines.
+
+
+// Variable Declaration.
+
+
+// Method Declaration.
+
+
+/**
+ * Program's main.
+ * Initializes and runs program.
+ */
+int main(int argc, char* argv[]) {
+
+    exit(0);
+}
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..6672a85
--- /dev/null
+++ b/makefile
@@ -0,0 +1,2 @@
+all:
+	gcc -Wall -Wpedantic -std=c99 *.c -g -o a4
-- 
GitLab