File array.h

Included in: array.c
  environment.h
  process_control.h

Preprocessor definitions

#define ARRAY_H

#define array_at( array, index )


Typedef Array

typedef struct {...} Array
struct  
   {  
      void** elements;  
      int length;  
      int max_length;  
   }  

Typedef DestructorFnc

typedef void (*DestructorFnc)(void* element)

Typedef EqualsFnc

typedef int (*EqualsFnc)(void* element,void* user_data)