Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is unicode/unistr.h?

I'm trying to add Beecrypt library to my project, but unfortunately it doesn't compile and demands unicode/unistr.h file, which is not a part of this library. Have you ever run into the same problem? What is that unicode/unistr.h file? Why it is not included into Beecrypt library since it is needed for the library's work? Where am i supposed to download it? I've searched in Google but in vain. Any ideas is highly appreciated

like image 696
Andrey Chernukha Avatar asked Jan 14 '12 11:01

Andrey Chernukha


2 Answers

Those are header files from the International Components for Unicode library, which you can download and link into your project along with Beecrypt.

like image 96
Crashworks Avatar answered Sep 21 '22 23:09

Crashworks


unistr.h is also installed as part of GNU libunistring. If you are using yum, you should be able to install it as

yum install libunistring-devel

like image 30
Amar Avatar answered Sep 20 '22 23:09

Amar