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

Function GenFilterString

DevIL/test/DDrawTest/test_window/WindowTest.cpp:552–565  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

550
551
552void GenFilterString(char *Out, char **Strings)
553{
554 int OutPos = 0, StringPos = 0;
555
556 while (Strings[StringPos][0] != 0) {
557 sprintf(Out + OutPos, Strings[StringPos]);
558 OutPos += strlen(Strings[StringPos++]) + 1;
559 }
560
561 Out[OutPos++] = 0;
562 Out[OutPos] = 0;
563
564 return;
565}
566
567
568// Dialog procedure.

Callers 1

WndProcFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected