OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libc/] [string/] [wcscoll.c] - Diff between revs 207 and 345

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
/*
/*
FUNCTION
FUNCTION
        <<wcscoll>>---locale-specific wide-character string compare
        <<wcscoll>>---locale-specific wide-character string compare
 
 
INDEX
INDEX
        wcscoll
        wcscoll
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <wchar.h>
        #include <wchar.h>
        int wcscoll(const wchar_t *<[stra]>, const wchar_t * <[strb]>);
        int wcscoll(const wchar_t *<[stra]>, const wchar_t * <[strb]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <wchar.h>
        #include <wchar.h>
        int wcscoll(<[stra]>, <[strb]>)
        int wcscoll(<[stra]>, <[strb]>)
        wchar_t *<[stra]>;
        wchar_t *<[stra]>;
        wchar_t *<[strb]>;
        wchar_t *<[strb]>;
 
 
DESCRIPTION
DESCRIPTION
        <<wcscoll>> compares the wide-character string pointed to by
        <<wcscoll>> compares the wide-character string pointed to by
        <[stra]> to the wide-character string pointed to by <[strb]>,
        <[stra]> to the wide-character string pointed to by <[strb]>,
        using an interpretation appropriate to the current <<LC_COLLATE>>
        using an interpretation appropriate to the current <<LC_COLLATE>>
        state.
        state.
 
 
        The current implementation of <<wcscoll>> simply uses <<wcscmp>>
        The current implementation of <<wcscoll>> simply uses <<wcscmp>>
        and does not support any language-specific sorting.
        and does not support any language-specific sorting.
 
 
RETURNS
RETURNS
        If the first string is greater than the second string,
        If the first string is greater than the second string,
        <<wcscoll>> returns a number greater than zero.  If the two
        <<wcscoll>> returns a number greater than zero.  If the two
        strings are equivalent, <<wcscoll>> returns zero.  If the first
        strings are equivalent, <<wcscoll>> returns zero.  If the first
        string is less than the second string, <<wcscoll>> returns a
        string is less than the second string, <<wcscoll>> returns a
        number less than zero.
        number less than zero.
 
 
PORTABILITY
PORTABILITY
<<wcscoll>> is ISO/IEC 9899/AMD1:1995 (ISO C).
<<wcscoll>> is ISO/IEC 9899/AMD1:1995 (ISO C).
*/
*/
 
 
#include <_ansi.h>
#include <_ansi.h>
#include <wchar.h>
#include <wchar.h>
 
 
int
int
_DEFUN (wcscoll, (a, b),
_DEFUN (wcscoll, (a, b),
        _CONST wchar_t *a _AND
        _CONST wchar_t *a _AND
        _CONST wchar_t *b)
        _CONST wchar_t *b)
 
 
{
{
  return wcscmp (a, b);
  return wcscmp (a, b);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.