hyung-hwan
7f0ad74286
fixed a bug of passing a wrong buffer to qse_wcrtomb() in qse_wcsntombsn(). enhanced qse_tio_writembsn() and qse_tio_writewcsn()
41 lines
511 B
C
41 lines
511 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef _QSE_LIB_STX_MISC_H_
|
|
#define _QSE_LIB_STX_MISC_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
qse_word_t qse_stx_hashbytes (
|
|
qse_stx_t* stx,
|
|
const void* data,
|
|
qse_word_t len
|
|
);
|
|
|
|
qse_word_t qse_stx_hashstr (
|
|
qse_stx_t* stx,
|
|
const qse_char_t* str
|
|
);
|
|
|
|
qse_word_t qse_stx_hashstrn (
|
|
qse_stx_t* stx,
|
|
const qse_char_t* str,
|
|
qse_word_t len
|
|
);
|
|
|
|
qse_word_t qse_stx_hashobj (
|
|
qse_stx_t* stx,
|
|
qse_word_t ref
|
|
);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|