]> wimlib.net Git - wimlib/blobdiff - src/encoding.c
compare_utf16le_names_case_insensitive(): Use _wcsnicmp()
[wimlib] / src / encoding.c
index 31e6913add4cff2aca184b1a6594f11cf3e3d5ee..d4f4f3993c47fb1b65f97ac75cbee45d41dfce61 100644 (file)
  * along with wimlib; if not, see http://www.gnu.org/licenses/.
  */
 
-#include "wimlib_internal.h"
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
+#include "wimlib.h"
+#include "wimlib/encoding.h"
+#include "wimlib/error.h"
+#include "wimlib/list.h"
+#include "wimlib/util.h"
 
 #include <errno.h>
 #include <iconv.h>
@@ -362,7 +370,7 @@ iconv_cleanup(struct iconv_list_head *head)
 }
 
 void
-iconv_global_cleanup()
+iconv_global_cleanup(void)
 {
        iconv_cleanup(&iconv_utf8_to_tstr);
        iconv_cleanup(&iconv_tstr_to_utf8);