22 lines
281 B
C
22 lines
281 B
C
/*
|
|
* $Id: array.h 118 2008-03-03 11:21:33Z baconevi $
|
|
*/
|
|
|
|
#ifndef _QSE_STX_ARRAY_H_
|
|
#define _QSE_STX_ARRAY_H_
|
|
|
|
#include <qse/stx/stx.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
qse_word_t qse_stx_new_array (qse_stx_t* stx, qse_word_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|