aboutsummaryrefslogtreecommitdiffstats
path: root/l4darr/d2array.c
blob: d0dc88fc29961f0ba20da03fbf8cff9227f04672 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <l4darr.h>

L4DA2* l4da2_create_setmax(int itemsize, L4XY len, L4XY maxlen){
    if(len.x < 0 || len.y < 0 || maxlen.x < 0 || maxlen.y < 0)
        return NULL;
    }
    L4DA2* arr = (L4DA2*)malloc();
}