OSDN Git Service

2008-12-16 Danny Smith <dannysmith@users.sourceforge.net>
[pf3gnuchains/pf3gnuchains4x.git] / winsup / mingw / wcscmpi.c
1 /*
2  * wcscmpi.c
3  * This file has no copyright assigned and is placed in the Public Domain.
4  * This file is a part of the mingw-runtime package.
5  * No warranty is given; refer to the file DISCLAIMER within the package.
6  *
7  * Oldnames from ANSI header string.h
8  *
9  * Some wrapper functions for those old name functions whose appropriate
10  * equivalents are not simply underscore prefixed.
11  *
12  */
13
14 #include <string.h>
15
16 int
17 wcscmpi (const wchar_t * ws1, const wchar_t * ws2)
18 {
19   return _wcsicmp (ws1, ws2);
20 }
21