This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .gitignore for Cadence OrCAD, HDL Allegro, and System Capture projects | |
# Website: https://www.cadence.com/ | |
### Cadence ### | |
# Backup files | |
*,[0-9] | |
*.bck | |
*.old |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef TWC_STRETCHY_BUFFER | |
#define TWC_STRETCHY_BUFFER | |
#include <stdbool.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
// This changes how much the arrays capacity the arrays gain when reallocated | |
#define capacity_increment \ | |
5 |