OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc2/] [newlib/] [libc/] [string/] [wcsncpy.c] - Diff between revs 207 and 520

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

Rev 207 Rev 520
/*
/*
FUNCTION
FUNCTION
        <<wcsncpy>>---copy part of a wide-character string
        <<wcsncpy>>---copy part of a wide-character string
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <wchar.h>
        #include <wchar.h>
        wchar_t *wcsncpy(wchar_t *<[s1]>, const wchar_t *<[s2]>, size_t <[n]>);
        wchar_t *wcsncpy(wchar_t *<[s1]>, const wchar_t *<[s2]>, size_t <[n]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        wchar_t *wcsncpy(<[s1]>, <[s2]>, <[n]>
        wchar_t *wcsncpy(<[s1]>, <[s2]>, <[n]>
        wchar_t *<[s1]>;
        wchar_t *<[s1]>;
        const wchar_t *<[s2]>;
        const wchar_t *<[s2]>;
        size_t <[n]>;
        size_t <[n]>;
 
 
DESCRIPTION
DESCRIPTION
        The <<wcsncpy>> function copies not more than <[n]> wide-character codes
        The <<wcsncpy>> function copies not more than <[n]> wide-character codes
        (wide-character codes that follow a null wide-character code are not
        (wide-character codes that follow a null wide-character code are not
        copied) from the array pointed to by <[s2]> to the array pointed to
        copied) from the array pointed to by <[s2]> to the array pointed to
        by <[s1]>. If copying takes place between objects that overlap, the
        by <[s1]>. If copying takes place between objects that overlap, the
        behaviour is undefined.  Note that if <[s1]> contains more than <[n]>
        behaviour is undefined.  Note that if <[s1]> contains more than <[n]>
        wide characters before its terminating null, the result is not
        wide characters before its terminating null, the result is not
        null-terminated.
        null-terminated.
 
 
        If the array pointed to by <[s2]> is a wide-character string that is
        If the array pointed to by <[s2]> is a wide-character string that is
        shorter than <[n]> wide-character codes, null wide-character codes are
        shorter than <[n]> wide-character codes, null wide-character codes are
        appended to the copy in the array pointed to by <[s1]>, until <[n]>
        appended to the copy in the array pointed to by <[s1]>, until <[n]>
        wide-character codes in all are written.
        wide-character codes in all are written.
 
 
RETURNS
RETURNS
        The <<wcsncpy>> function returns <[s1]>; no return value is reserved to
        The <<wcsncpy>> function returns <[s1]>; no return value is reserved to
        indicate an error.
        indicate an error.
 
 
PORTABILITY
PORTABILITY
ISO/IEC 9899; POSIX.1.
ISO/IEC 9899; POSIX.1.
 
 
No supporting OS subroutines are required.
No supporting OS subroutines are required.
*/
*/
 
 
#include <_ansi.h>
#include <_ansi.h>
#include <wchar.h>
#include <wchar.h>
 
 
wchar_t *
wchar_t *
_DEFUN (wcsncpy, (s1, s2, n),
_DEFUN (wcsncpy, (s1, s2, n),
        wchar_t * s1 _AND
        wchar_t * s1 _AND
        _CONST wchar_t * s2 _AND
        _CONST wchar_t * s2 _AND
        size_t n)
        size_t n)
{
{
  wchar_t *dscan=s1;
  wchar_t *dscan=s1;
 
 
  while(n > 0)
  while(n > 0)
    {
    {
      --n;
      --n;
      if((*dscan++ = *s2++) == L'\0')  break;
      if((*dscan++ = *s2++) == L'\0')  break;
    }
    }
  while(n-- > 0)  *dscan++ = L'\0';
  while(n-- > 0)  *dscan++ = L'\0';
 
 
  return s1;
  return s1;
}
}
 
 

powered by: WebSVN 2.1.0

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