Waitrud Weber’s blog

things and reminders for memories

Analyzer: windows-make: split is still living:

(20201001: )
---
> .\winmain_001.exe
i 0 aaa
i 1 bbb
i 2 ccc

---
.\main.cpp  Thu Oct 01 16:09:14 2020

 26 :int main () {
 27 :	char** ary_split = NULL;
 28 :	int number;
 29 :	int i;
 30 :
 31 :	ary_split = split( (char*) "aaa bbb ccc", ' ', &number );
 32 :	for ( i=0; i<number; i++ ) {
 33 :		printf("i %d %s\r\n", i, ary_split[i]);
 34 :	}
 35 :
 36 :	return 0;
 37 :}
 38 :
---