_strninc、_wcsninc、_mbsninc、_mbsninc_l
將資料指標向前移動 n 個字元
重要
_mbsninc and _mbsninc_l不能用於在 Windows 執行階段執行的應用程式。如需詳細資訊,請參閱 /ZW 不支援 CRT 函式。
char *_strninc(
const char *str,
size_t count
);
wchar_t *_wcsninc(
const wchar_t *str,
size_t count
);
unsigned char *_mbsninc(
const unsigned char *str,
size_t count
);
unsigned char *_mbsninc(
const unsigned char *str,
size_t count,
_locale_t locale
);
參數
str
來源字串。count
增加字串指標的字元數。locale
要使用的地區設定。
傳回值
當str 被增加 count 個字元後,這些常式會回傳一個指標給 str。若提供的指標為 NULL,則會回傳 NULL。 如果 count 大於或等於 str 的字元數,此結果未被定義。
備註
_mbsninc 函式藉由 count 多位元組字元增加 str 。 _mbsninc 根據目前使用的 多位元組字碼頁 辨識多位元組字元序列。
一般文字常式對應
Tchar.h 常式 |
未定義 _UNICODE and _MBCS |
已定義 _MBCS |
已定義 _UNICODE |
---|---|---|---|
_tcsninc |
_strninc |
_mbsninc |
_wcsninc |
_strninc 和 _wcsninc 是單一位元組字元以及 _mbsninc 的寬字元字串版本。 _wcsninc 和 _strninc 只提供這種對應使用,並且不應該為其他用途所使用。 如需詳細資訊,請參閱 使用泛用文字對應 和 泛用文字對應。
_mbsninc_l 也相同,除了改用傳入的地區設定參數。 如需詳細資訊,請參閱地區設定。
需求
常式 |
必要的標頭 |
---|---|
_mbsninc |
<mbstring.h> |
_mbsninc_l |
<mbstring.h> |
_strninc |
<tchar.h> |
_wcsninc |
<tchar.h> |
如需相容性的詳細資訊,請參閱相容性。
.NET Framework 對等用法
不適用。若要呼叫標準 C 函式,請使用 PInvoke。如需詳細資訊,請參閱平台叫用範例。
請參閱
參考
_strdec、_wcsdec、_mbsdec、_mbsdec_l