MCPcopy Create free account
hub / github.com/coreutils/coreutils / first_percent_b

Function first_percent_b

src/ls.c:1292–1304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1290 widths/flags are honored. */
1291
1292ATTRIBUTE_PURE
1293static char const *
1294first_percent_b (char const *fmt)
1295{
1296 for (; *fmt; fmt++)
1297 if (fmt[0] == '%')
1298 switch (fmt[1])
1299 {
1300 case 'b': return fmt;
1301 case '%': fmt++; break;
1302 }
1303 return NULL;
1304}
1305
1306static char RFC3986[256];
1307static void

Callers 1

abformat_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected