From 698afbc083cab60e82087a94acd5caea430820db Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Tue, 19 Sep 2017 12:59:27 -0400 Subject: [PATCH] Setup basic formatting for programs --- BuildDataBase.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ UseDataBase.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+) create mode 100644 BuildDataBase.c create mode 100644 UseDataBase.c diff --git a/BuildDataBase.c b/BuildDataBase.c new file mode 100644 index 0000000..8546139 --- /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 0000000..f026670 --- /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[]) { + +} -- GitLab