Aseem
Aseem

Reputation: 11

ASCII to ISO Latin-1 conversion in C++

I have a ASCII string of 5 bytes, and i need to convert it to ISO Latin-1 form. I am using c++. Please suggest.

Upvotes: 0

Views: 524

Answers (1)

CB Bailey
CB Bailey

Reputation: 792787

ASCII is a subset of iso-8859-1 so the conversion is essentially a no-op.

Upvotes: 5

Related Questions