MCPcopy Create free account
hub / github.com/Siv3D/OpenSiv3D / parseInt

Function parseInt

Siv3D/src/ThirdParty/tinyobjloader/tiny_obj_loader.h:803–808  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

801}
802
803static inline int parseInt(const char **token) {
804 (*token) += strspn((*token), " \t");
805 int i = atoi((*token));
806 (*token) += strcspn((*token), " \t\r");
807 return i;
808}
809
810// Tries to parse a floating point number located at s.
811//

Callers 4

parseTagTripleFunction · 0.85
LoadMtlFunction · 0.85
LoadObjFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected