MCPcopy Index your code
hub / github.com/CCob/BOF.NET / skipWhitespace

Function skipWhitespace

bofs/bofnet_execute.cpp:187–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185
186
187const char* skipWhitespace(const char* str){
188
189 const char* result = str;
190
191 while(*result == ' ' || *result == '\t' || *result =='\0'){
192 result++;
193 }
194 return result;
195}
196
197VARIANT createVariantString(const char* str){
198

Callers 1

goFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected