Definition at line 19 of file confStruct.cpp. 00019 { 00020 int counter = 0; 00021 while(confDef[counter] != '\0'){ 00022 if(counter % 3 == 0){ 00023 printf("\n"); 00024 } 00025 if(confDef[counter +1] == ':'){ 00026 printf("-%c <%s>", confDef[counter], validValues[(int)(counter/2)]); 00027 } 00028 } 00029 printf("\n"); 00030 }
|
1.5.1