Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 690 Bytes

goals.md

File metadata and controls

25 lines (22 loc) · 690 Bytes

To Do

  • String Operations

    This is the string operations library that I have under strops.h

    • Replace Function
    • Reverse Function
    • Equals Function
    • Uppercase function
    • Lowercase Function

Done

  • Remove strops.c and strops.h
  • Non-Owning Strings
    • Holds a simple String
    • Has a info function
    • Allocated on Stack
    • Impliment an Equality checker
  • Owning Strings

    String meant to be modifiable

    • String Data is modifiable
    • Allocated on heap
  • Structure

    I am going to make the header single file to make compiling much easier

    • Make stdstr into a single header library