source: asp3_tinet_ecnl_arm/trunk/musl-1.1.18/src/locale/wcscoll.c@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 329 bytes
Line 
1#include <wchar.h>
2#include <locale.h>
3#include "locale_impl.h"
4#include "libc.h"
5
6/* FIXME: stub */
7int __wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale)
8{
9 return wcscmp(l, r);
10}
11
12int wcscoll(const wchar_t *l, const wchar_t *r)
13{
14 return __wcscoll_l(l, r, CURRENT_LOCALE);
15}
16
17weak_alias(__wcscoll_l, wcscoll_l);
Note: See TracBrowser for help on using the repository browser.