Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
This commit is contained in:
@@ -33,8 +33,8 @@ unsigned long __fastcall__ strtoul (const char* nptr, char** endptr, int base)
|
||||
}
|
||||
|
||||
/* If base is zero, we may have a 0 or 0x prefix. If base is 16, we may
|
||||
* have a 0x prefix.
|
||||
*/
|
||||
** have a 0x prefix.
|
||||
*/
|
||||
if (base == 0) {
|
||||
if (*S == '0') {
|
||||
++S;
|
||||
@@ -52,8 +52,8 @@ unsigned long __fastcall__ strtoul (const char* nptr, char** endptr, int base)
|
||||
}
|
||||
|
||||
/* Determine the maximum valid number and (if the number is equal to this
|
||||
* value) the maximum valid digit.
|
||||
*/
|
||||
** value) the maximum valid digit.
|
||||
*/
|
||||
MaxDigit = ULONG_MAX % base;
|
||||
MaxVal = ULONG_MAX / base;
|
||||
|
||||
@@ -93,8 +93,8 @@ unsigned long __fastcall__ strtoul (const char* nptr, char** endptr, int base)
|
||||
}
|
||||
|
||||
/* Store the end pointer. If no conversion was performed, the value of
|
||||
* nptr is returned in endptr.
|
||||
*/
|
||||
** nptr is returned in endptr.
|
||||
*/
|
||||
if (endptr) {
|
||||
if (CvtCount > 0) {
|
||||
*endptr = (char*) S;
|
||||
|
||||
Reference in New Issue
Block a user