1 2 3 4 5 6 7 8
#ifndef STDOBJ_H #define STDOBJ_H #include <stdbool.h> #include "array.h" #include "better_string.h" bool array_in(array_t *a, string_t *s); #endif