| 136 | } |
| 137 | |
| 138 | static int skip_atoi(const char **s) |
| 139 | { |
| 140 | int i=0; |
| 141 | |
| 142 | while (isdigit((int)(**s))) |
| 143 | i = i*10 + *((*s)++) - '0'; |
| 144 | return i; |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * vsnprintf - Format a string and place it in a buffer |
no outgoing calls
no test coverage detected
searching dependent graphs…