File dynamic_array.c¶
FileList > base > dynamic_array.c
Go to the source code of this file
#include <string.h>#include <malloc.h>#include "error_code.h"#include "dynamic_array.h"#include "memory_wrapper.hpp"
Public Functions¶
| Type | Name |
|---|---|
| int | da_add (dynamic_array * da, const void * data) |
| dynamic_array * | da_create (int count, size_t len) |
| int | da_destroy (dynamic_array * da) |
| int | da_get (dynamic_array * da, int pos, void * data) |
| int | da_put (dynamic_array * da, int pos, const void * data) |
| int | da_size (dynamic_array * da) |
Public Static Functions¶
| Type | Name |
|---|---|
| int | da_expand (dynamic_array * da, int max) |
Public Functions Documentation¶
function da_add¶
function da_create¶
function da_destroy¶
function da_get¶
function da_put¶
function da_size¶
Public Static Functions Documentation¶
function da_expand¶
The documentation for this class was generated from the following file cubrid/src/base/dynamic_array.c