| 3432 | }; |
| 3433 | |
| 3434 | static 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 | |
| 3447 | static void fxUint8ArrayFromBase64(txMachine* the, txU1* srcStart, txU1* dstStart, txSize* read, txSize* written, txU1* alphabet, txInteger lastChunkHandling) |
| 3448 | { |
no outgoing calls
no test coverage detected