MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / eatThru

Function eatThru

Trash/stringTable.c:77–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77static void eatThru(char val, char **table_p)
78{
79 register char *table = *table_p;
80 register BOOL found = NO;
81
82 while (*table && !found)
83 {
84 if (*table == '\\') table += 2;
85 else
86 {
87 if (*table == val) found = YES;
88 table++;
89 }
90 }
91 *table_p = table;
92}
93
94char *
95newStringFromList(

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected