diff --git a/BuildDataBase.c b/BuildDataBase.c
new file mode 100644
index 0000000000000000000000000000000000000000..8546139707f390d657027b80396caf512f6ccec9
--- /dev/null
+++ b/BuildDataBase.c
@@ -0,0 +1,46 @@
+/**
+ * Brandon Rodriguez
+ * CS 3240
+ * 09-19-17
+ * a1 (Assignment 1)
+ */
+
+
+/**
+ * Description:
+ *
+ * Reads in song data from Songs.csv and saves in two "permanent" database files.
+ */
+
+
+/**
+ * Known Issues:
+ *
+ */
+
+
+// Import headers.
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <ctype.h>
+#include "apue.h"
+
+
+// Define Vars.
+#define BUFFERSIZE 4096;
+
+
+// Variables.
+
+
+// Method Declaration.
+
+
+/**
+ * Program's main.
+ * Initializes and runs program.
+ */
+int main(int argc, char* argv[]) {
+
+}
diff --git a/UseDataBase.c b/UseDataBase.c
new file mode 100644
index 0000000000000000000000000000000000000000..f0266709775b18df3e8f73a087f0e62faeebdb69
--- /dev/null
+++ b/UseDataBase.c
@@ -0,0 +1,48 @@
+/**
+ * Brandon Rodriguez
+ * CS 3240
+ * 09-19-17
+ * a1 (Assignment 1)
+ */
+
+
+/**
+ * Description:
+ *
+ * Reads in song data from two song-database files.
+ *
+ * Then allows user to search and print out song information.
+ */
+
+
+/**
+ * Known Issues:
+ *
+ */
+
+
+// Import headers.
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <ctype.h>
+#include "apue.h"
+
+
+// Define Vars.
+#define BUFFERSIZE 4096;
+
+
+// Variables.
+
+
+// Method Declaration.
+
+
+/**
+ * Program's main.
+ * Initializes and runs program.
+ */
+int main(int argc, char* argv[]) {
+
+}