1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 05:15:53 +02:00
libcproject/test/array_list_test.h
2023-01-07 19:41:04 +01:00

14 lines
195 B
C

#ifndef __ARRAY_LIST_TEST__
#define __ARRAY_LIST_TEST__
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "libcproject.h"
void array_list_test();
#endif