28 lines
550 B
Markdown
28 lines
550 B
Markdown
# Vec
|
|
|
|
## Description
|
|
Dynamic Array (Vector) implementation written in C.
|
|
|
|
## Table of Contents
|
|
|
|
- [Description](#description)
|
|
- [Features](#features)
|
|
- [Usage](#usage)
|
|
- [Credits / Resources](#credits--resources)
|
|
- [License](#license)
|
|
|
|
## Features / TODOS
|
|
- [x] 0(1) Access
|
|
- [x] Automatic Re-sizing
|
|
- [x] Contiguous memory
|
|
- [ ] Add cleanup func for deletion
|
|
|
|
## Usage
|
|
`make` to build<br>
|
|
`make test` to build and run tests<br>
|
|
|
|
## Credits / Resources
|
|
|
|
## License
|
|
This project is licensed under MIT - see the [LICENSE](LICENSE) file for details.
|