This is a set of structures and functions to create a wrapper around a character array to create a string type
Files
stringtype.h - contains function declarations and structures
stringtype.c - contains the implementation for the functions in the header
main.c - to test the code
makefile - to compile the code
createString - acts as a constructor
setString - sets the value of the string to something
append - code to append a string
deleteString - acts as a destructor
println - a print function
empty - checks of the strng is empty
toCharArray - returns a char*
copyString - copies string to another string
swapString - swaps two strings