MCPcopy Create free account
hub / github.com/RsyncProject/rsync / POPT_next_char

Function POPT_next_char

popt/poptint.c:26–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26const char *
27POPT_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

Callers 2

stringDisplayWidthFunction · 0.85
singleOptionHelpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected