Skip to content
/ DA Public

A small, portable, and powerful C library for dynamic arrays.

License

Notifications You must be signed in to change notification settings

I8087/DA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DA

Dynamic array library written in C.

Getting Started

Here's an example to get you going!

#include <stdio.h>
#include "da.h"

int main(int argc, char *argv[]) {
    DA mylist;
    DA_qinit(&mylist);
    for (int i = 0; i < 10; i++) DA_append(&mylist, i);
    DA_print(&mylist);
    DA_deinit(&mylist);
    return 0;
}

About

A small, portable, and powerful C library for dynamic arrays.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages