Please bear in mind that `atol()` uses `strspn()` internally, so the result of `test_atol` is dependent on the result of `test_strspn`. */
| 189 | /* Please bear in mind that `atol()` uses `strspn()` internally, so the result |
| 190 | of `test_atol` is dependent on the result of `test_strspn`. */ |
| 191 | static void test_atol(void **state) |
| 192 | { |
| 193 | int i; |
| 194 | |
| 195 | for (i = 0; i < ARRAY_SIZE(str_with_l_val); i++) |
| 196 | assert_int_equal(str_with_l_val[i].value, atol(str_with_l_val[i].str)); |
| 197 | } |
| 198 | |
| 199 | int main(void) |
| 200 | { |