Files
cworker/clib/cdynarr_test.c
Олег Бородин eb55ce2b75 at work
2023-09-05 12:15:20 +02:00

25 lines
370 B
C

/*
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <massert.h>
#include <cdynarr.h>
void test01(void) {
cintarr_t* arr = new_cintarr();
cintarr_append(arr, 12);
cintarr_append(arr, 12);
cintarr_free(arr);
}
int main(void) {
test01();
return 0;
}