Michaël Lemaire
23586ee5f4
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@250 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
22 lines
474 B
C
22 lines
474 B
C
#ifndef _PAYSAGES_ARRAY_H_
|
|
#define _PAYSAGES_ARRAY_H_
|
|
|
|
#include "shared/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void arrayCreate(Array* array, int item_size);
|
|
void arrayDelete(Array* array);
|
|
void* arrayAppend(Array* array, void* item);
|
|
void arrayInsert(Array* array, void* item, int position);
|
|
void arrayReplace(Array* array, void* item, int position);
|
|
void arrayLStrip(Array* array, int count);
|
|
void arrayClear(Array* array);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|