From db421d4208d97ee4cd5f99ee2da8e37bd98f08cc Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 18 Sep 2017 04:16:06 +0000 Subject: [PATCH] fixed prototypes for qse_wcs_vfmt() and qse_wcs_vfcat() --- qse/include/qse/cmn/str.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/qse/include/qse/cmn/str.h b/qse/include/qse/cmn/str.h index a3f7b1db..4f04a7b1 100644 --- a/qse/include/qse/cmn/str.h +++ b/qse/include/qse/cmn/str.h @@ -3275,12 +3275,24 @@ QSE_EXPORT qse_size_t qse_wcs_fcat ( ... ); +QSE_EXPORT qse_size_t qse_wcs_vfcat ( + qse_wcs_t* str, + const qse_wchar_t* fmt, + va_list ap +); + QSE_EXPORT qse_size_t qse_wcs_fmt ( qse_wcs_t* str, const qse_wchar_t* fmt, ... ); +QSE_EXPORT qse_size_t qse_wcs_vfmt ( + qse_wcs_t* str, + const qse_wchar_t* fmt, + va_list ap +); + #if defined(QSE_CHAR_IS_MCHAR) # define qse_str_open(mmgr,ext,capa) qse_mbs_open(mmgr,ext,capa) # define qse_str_close(str) qse_mbs_close(str)