Skip to content
Snippets Groups Projects
Commit 698afbc0 authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Setup basic formatting for programs

parent b3042ce6
Branches
No related merge requests found
/**
* 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[]) {
}
/**
* 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[]) {
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment