unicode_to_utf8: memset not declared
Status: Beta
Brought to you by:
slundell
gcc 4.3.4 produces this error in jfsrec-svn-7:
unicode_to_utf8.cpp: In function 'std::string Unicode_String_to_UTF8_std_string(const uint16_t*, int)':
unicode_to_utf8.cpp:92: error: 'memset' was not declared in this scope
fix:
#include <string.h>
or
#include <memory.h>