/*
 *
 *  Copyright (C) 2024-2025  Yurii Yakubin (yurii.yakubin@gmail.com)
 *
 */

#include <wasmux-config.h>
#include <wchar.h>
#include <wasmux/assert.h>
#include <wasmux/cxx/Characters.h>

int wcwidth(wchar_t wc)
{
  WA_UNREACHABLE();
  return 0;
}

int wcswidth(const wchar_t* wcs, size_t len)
{
  WA_UNREACHABLE();
  return 0;
}

int wcscoll(const wchar_t* wcs1, const wchar_t* wcs2)
{
  WA_UNREACHABLE();
  return 0;
}
