Home | History | Annotate | Download | only in TestCases

Lines Matching refs:strtol

1 // Test strict_string_checks option in strtol function
33 long r = strtol(array, &endptr, 3);
41 long r = strtol(array, &endptr, 35);
48 // Using -1 for a strtol base causes MSVC to abort. Print the expected lines
59 long r = strtol(array + 1, NULL, -1);
66 // Using -1 for a strtol base causes MSVC to abort. Print the expected lines
75 long r = strtol(array + 3, NULL, 1);
84 long r = strtol(array, NULL, 0);
92 long r = strtol(array, &endptr, 0);
100 long r = strtol(array + 2, NULL, 0);