mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
14 lines
195 B
C
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
|