Skip to content

Commit

Permalink
Converted file to plain ASCII
Browse files Browse the repository at this point in the history
  • Loading branch information
seanm authored and malaterre committed Oct 30, 2023
1 parent 2797217 commit b578ec5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,16 +350,16 @@ int main()
pn2.Print( std::cout );
std::cout << std::endl;

// Rev. John Robert Quincy Adams, B.A. M.Div. Adams^John Robert Quincy^^Rev.^B.A. M.Div. [One family name; three given names; no middle name; one prefix; two suffixes.]
// Rev. John Robert Quincy Adams, B.A. M.Div. "Adams^John Robert Quincy^^Rev.^B.A. M.Div." [One family name; three given names; no middle name; one prefix; two suffixes.]
PN pn3 = { "Adams", "John Robert Quincy", "", "Rev.", "B.A. M.Div." };
pn3.Print( std::cout );
std::cout << std::endl;
// Susan Morrison-Jones, Ph.D., Chief Executive Officer Morrison-Jones^Susan^^^Ph.D., Chief Executive Officer [Two family names; one given name; no middle name; no prefix; two suffixes.]
// Susan Morrison-Jones, Ph.D., Chief Executive Officer "Morrison-Jones^Susan^^^Ph.D., Chief Executive Officer" [Two family names; one given name; no middle name; no prefix; two suffixes.]
PN pn4 = { "Morrison-Jones", "Susan", "", "", "Ph.D., Chief Executive Officer" };
pn4.Print( std::cout );
std::cout << std::endl;

// John Doe Doe^John [One family name; one given name; no middle name, prefix, or suffix. Delimiters have been omitted for the three trailing null components.]
// John Doe "Doe^John" [One family name; one given name; no middle name, prefix, or suffix. Delimiters have been omitted for the three trailing null components.]
PN pn5 = { "Doe", "John" };
pn5.Print( std::cout );
std::cout << std::endl;
Expand All @@ -371,7 +371,7 @@ int main()
PN pn6 = { "Smith", "Fluffy" };
pn6.Print( std::cout );
std::cout << std::endl;
//ABC Farms^Running on Water [A horse whose responsible organization is named ABC Farms, and whose name is Running On Water]
//ABC Farms^Running on Water [A horse whose responsible organization is named ABC Farms, and whose name is "Running On Water"]
PN pn7 = { "ABC Farms", "Running on Water" };
pn7.Print( std::cout );
std::cout << std::endl;
Expand Down

0 comments on commit b578ec5

Please sign in to comment.