replaces dummy characters with spaces
| 395 | |
| 396 | //replaces dummy characters with spaces |
| 397 | static void PutInSpaces(int i) |
| 398 | { |
| 399 | int j; |
| 400 | for(j=0;j<ADDRESSLENGTH;j++) |
| 401 | { |
| 402 | if(addresses[i][j] == '|') addresses[i][j] = ' '; |
| 403 | if(labels[i][j] == '|') labels[i][j] = ' '; |
| 404 | } |
| 405 | for(;j<LABELLENGTH;j++) |
| 406 | { |
| 407 | if(labels[i][j] == '|') labels[i][j] = ' '; |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | //Decides if any edit box has anything |
| 412 | bool iftextchanged() |
no outgoing calls
no test coverage detected