MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / SkipSpaceAndTab

Function SkipSpaceAndTab

include/LightGBM/utils/common.h:378–383  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

376}
377
378inline static const char* SkipSpaceAndTab(const char* p) {
379 while (*p == ' ' || *p == '\t') {
380 ++p;
381 }
382 return p;
383}
384
385inline static const char* SkipReturn(const char* p) {
386 while (*p == '\n' || *p == '\r' || *p == ' ') {

Callers 1

ParseOneLineMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected