MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxSkipAsciiWhitespace

Function fxSkipAsciiWhitespace

xs/sources/xsDataView.c:3434–3445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3432};
3433
3434static txU1 fxSkipAsciiWhitespace(txU1** src)
3435{
3436 txU1* p = *src;
3437 txU1 c;
3438 while ((c = c_read8(p))) {
3439 if ((c != 0x09) && (c != 0x0A) && (c != 0x0C) && (c != 0x0D) && (c != 0x20))
3440 break;
3441 p++;
3442 }
3443 *src = p;
3444 return c;
3445}
3446
3447static void fxUint8ArrayFromBase64(txMachine* the, txU1* srcStart, txU1* dstStart, txSize* read, txSize* written, txU1* alphabet, txInteger lastChunkHandling)
3448{

Callers 1

fxUint8ArrayFromBase64Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected