MCPcopy Create free account
hub / github.com/DentonW/DevIL / GenFilterString

Function GenFilterString

DevIL/examples/animation_example/AnimTest.cpp:366–379  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

364
365
366void GenFilterString(char *Out, char **Strings)
367{
368 int OutPos = 0, StringPos = 0;
369
370 while (Strings[StringPos][0] != 0) {
371 sprintf(Out + OutPos, Strings[StringPos]);
372 OutPos += strlen(Strings[StringPos++]) + 1;
373 }
374
375 Out[OutPos++] = 0;
376 Out[OutPos] = 0;
377
378 return;
379}

Callers 1

WndProcFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected