2023-01-07 19:27:16 +01:00
|
|
|
#ifndef __ARRAY_LIST_TEST__
|
|
|
|
#define __ARRAY_LIST_TEST__
|
|
|
|
|
2023-01-07 19:38:01 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "libcproject.h"
|
|
|
|
|
2023-01-07 19:27:16 +01:00
|
|
|
void array_list_test();
|
|
|
|
|
|
|
|
#endif
|