A C11 project for COMP211 System Programming Fundamentals. It implements a
generic dynamically growable vector (Vec) and a string abstraction (Str)
built on top of it.
From the project directory:
cd lab-3-turtleSimulator3000
make
make runThe program reads lines from standard input and prints the accumulated string
after each line. Press Ctrl-D to finish input.
make test # Unit and integration tests
make lint # Static analysis with Splint
make clean # Remove build artifactsSource files are in src/, public headers are in include/, and tests are in
test/unit/.