| 24 | } |
| 25 | |
| 26 | const char * |
| 27 | POPT_next_char (const char *str) |
| 28 | { |
| 29 | const char *p = str; |
| 30 | |
| 31 | while (*p != '\0') { |
| 32 | p++; |
| 33 | if (((unsigned)*p & 0xc0) != (unsigned)0x80) |
| 34 | break; |
| 35 | } |
| 36 | return p; |
| 37 | } |
| 38 | |
| 39 | #if !defined(POPT_fprintf) /* XXX lose all the goop ... */ |
| 40 |
no outgoing calls
no test coverage detected