taglinefilesource code
tempstr202scripts/lxdialog/util.cchar tempstr[MAX_LEN + 1], *word /*,  *tempptr, *tempptr1*/;
tempstr204scripts/lxdialog/util.cstrcpy (tempstr, prompt);
tempstr206scripts/lxdialog/util.cprompt_len = strlen(tempstr);
tempstr212scripts/lxdialog/util.cif(tempstr[i] == '\n') tempstr[i] = ' ';
tempstr215scripts/lxdialog/util.cif (strlen (tempstr) <= width - x * 2) {  /* If prompt is short */
tempstr216scripts/lxdialog/util.cwmove (win, y, (width - strlen (tempstr)) / 2);
tempstr217scripts/lxdialog/util.cwaddstr (win, tempstr);
tempstr222scripts/lxdialog/util.cwhile ((word = strtok (first ? tempstr : NULL, " ")) != NULL) {