MCPcopy Create free account
hub / github.com/MyGUI/mygui / readCharF

Function readCharF

MyGUIEngine/src/msdfgen/core/shape-description.cpp:12–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10namespace msdfgen {
11
12int readCharF(FILE *input) {
13 int c = '\0';
14 do {
15 c = fgetc(input);
16 } while (c == ' ' || c == '\t' || c == '\r' || c == '\n');
17 return c;
18}
19
20int readCharS(const char **input) {
21 int c = '\0';

Callers 1

readShapeDescriptionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected