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

Function POPT_prev_char

popt/poptint.c:14–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12#include "lookup3.c"
13
14const char *
15POPT_prev_char (const char *str)
16{
17 const char *p = str;
18
19 while (1) {
20 p--;
21 if (((unsigned)*p & 0xc0) != (unsigned)0x80)
22 return p;
23 }
24}
25
26const char *
27POPT_next_char (const char *str)

Callers 1

singleOptionHelpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected