Removed libicu dependency for UTF-16 partition names. Version 0.8.9

release.
This commit is contained in:
Roderick W. Smith
2014-02-17 16:17:11 -05:00
parent 22e88b5be2
commit 84aaff6b9c
22 changed files with 277 additions and 114 deletions

View File

@@ -77,8 +77,11 @@ int GetNumber(int low, int high, int def, const string & prompt) {
char GetYN(void) {
char response;
string line;
bool again = 0 ;
do {
if ( again ) { cout << "Your option? " ; }
again = 1 ;
cout << "(Y/N): ";
line = ReadString();
response = toupper(line[0]);