source: azure_iot_hub/trunk/musl-1.1.18/src/locale/strcoll.c@ 389

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

ビルドが通るよう更新

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