Skip to content

Commit 9478b3d

Browse files
authored
docs: corrected "MB_LEN_MAX" description (#4639)
Updated MB_LEN_MAX description with Microsoft C++ Runtime Library documentation. For more details, please refer to: https://github.com/MicrosoftDocs/cpp-docs/blob/main/docs/c-runtime-library/data-type-constants.md
1 parent c290b2c commit 9478b3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/c-language/cpp-integer-limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Microsoft C also permits the declaration of sized integer variables, which are i
2323
|**UCHAR_MAX**|Maximum value for a variable of type **`unsigned char`**.|255 (0xff)|
2424
|**CHAR_MIN**|Minimum value for a variable of type **`char`**.|-128; 0 if /J option used|
2525
|**CHAR_MAX**|Maximum value for a variable of type **`char`**.|127; 255 if /J option used|
26-
|**MB_LEN_MAX**|Maximum number of bytes in a multicharacter constant.|5|
26+
|**MB_LEN_MAX**|Maximum number of bytes in a multibyte character.|5|
2727
|**SHRT_MIN**|Minimum value for a variable of type **`short`**.|-32768|
2828
|**SHRT_MAX**|Maximum value for a variable of type **`short`**.|32767|
2929
|**USHRT_MAX**|Maximum value for a variable of type **`unsigned short`**.|65535 (0xffff)|

0 commit comments

Comments
 (0)