From af9603eaeff0bc271f191b339d1aee37ffc2a820 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Tue, 20 Sep 2016 13:33:20 -0400
Subject: [PATCH] Add readme file

---
 README.md | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 README.md

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b98e610
--- /dev/null
+++ b/README.md
@@ -0,0 +1,30 @@
+# CS2230 Assignment 2
+
+## Author
+
+Brandon Rodriguez
+
+## Description
+
+Program must be compiled after pulling.
+
+Program handles values in bases 2 through 16, and 256.
+Takes in a value in a given base, then converts to the equivalent value in another given base.
+
+
+### Notes
+
+Give four arguments, seperated by spaces:
+* The given name of the program (Determined upon compilation. User Defined.)
+* A value, to process.
+* The base of the value (Should be of base 2-16, or 256.)
+* The desired base to convert to (Should be of base 2-16, or 256.)
+
+## Known Issues
+
+Program is meant to handle converting from any handled base to any other handled base, using three seperate potential algorithms.
+
+Currently, all output is handled properly. However, input is only handled by two of the three given algorithms. Program technically still works, but input uses a less effecient "catch all" algorithm for powers of two.
+
+
+Also, I'm sure this program is generally far less effecient than is optimal. Still trying to learn C. Can definitely be generally optimized at a later date, I just don't understand how, yet.
-- 
GitLab