#ifndef LLVM_LIBC_SRC_WCHAR_WCSNCMP_H
#define LLVM_LIBC_SRC_WCHAR_WCSNCMP_H
#include "hdr/types/size_t.h"
#include "hdr/types/wchar_t.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
int wcsncmp(const wchar_t *left, const wchar_t *right, size_t n);
}
#endif