Skip to content

Acalinux86/dyn_array

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic Arrays in C

Usage

Include the Header File in your .c or .cpp file. Declare a struct with three fields:

  • contents
  • count
  • capacity

e.g

typedef struct Stack {
    int *contents;
    size_t count;
    size_t capacity;
} Stack;

About

Header Only Dynamic Array Library in C Macros

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors