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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [string/] [wcswidth.c] - Diff between revs 148 and 158

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

Rev 148 Rev 158
/*
/*
FUNCTION
FUNCTION
        <<wcswidth>>---number of column positions of a wide-character string
        <<wcswidth>>---number of column positions of a wide-character string
 
 
INDEX
INDEX
        wcswidth
        wcswidth
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <wchar.h>
        #include <wchar.h>
        int wcswidth(const wchar_t *<[pwcs]>, size_t <[n]>);
        int wcswidth(const wchar_t *<[pwcs]>, size_t <[n]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <wchar.h>
        #include <wchar.h>
        int wcswidth(<[pwcs]>, <[n]>)
        int wcswidth(<[pwcs]>, <[n]>)
        wchar_t *<[wc]>;
        wchar_t *<[wc]>;
        size_t <[n]>;
        size_t <[n]>;
 
 
DESCRIPTION
DESCRIPTION
        The <<wcswidth>> function shall determine the number of column
        The <<wcswidth>> function shall determine the number of column
        positions required for <[n]> wide-character codes (or fewer than <[n]>
        positions required for <[n]> wide-character codes (or fewer than <[n]>
        wide-character codes if a null wide-character code is encountered
        wide-character codes if a null wide-character code is encountered
        before <[n]> wide-character codes are exhausted) in the string pointed
        before <[n]> wide-character codes are exhausted) in the string pointed
        to by <[pwcs]>.
        to by <[pwcs]>.
 
 
RETURNS
RETURNS
        The <<wcswidth>> function either shall return 0 (if <[pwcs]> points to a
        The <<wcswidth>> function either shall return 0 (if <[pwcs]> points to a
        null wide-character code), or return the number of column positions
        null wide-character code), or return the number of column positions
        to be occupied by the wide-character string pointed to by <[pwcs]>, or
        to be occupied by the wide-character string pointed to by <[pwcs]>, or
        return -1 (if any of the first <[n]> wide-character codes in the
        return -1 (if any of the first <[n]> wide-character codes in the
        wide-character string pointed to by <[pwcs]> is not a printable
        wide-character string pointed to by <[pwcs]> is not a printable
        wide-character code).
        wide-character code).
 
 
PORTABILITY
PORTABILITY
<<wcswidth>> has been introduced in the Single UNIX Specification Volume 2.
<<wcswidth>> has been introduced in the Single UNIX Specification Volume 2.
<<wcswidth>> has been marked as an extension in the Single UNIX Specification Volume 3.
<<wcswidth>> has been marked as an extension in the Single UNIX Specification Volume 3.
*/
*/
 
 
#include <_ansi.h>
#include <_ansi.h>
#include <wchar.h>
#include <wchar.h>
 
 
int
int
_DEFUN (wcswidth, (pwcs, n),
_DEFUN (wcswidth, (pwcs, n),
        _CONST wchar_t *pwcs _AND
        _CONST wchar_t *pwcs _AND
        size_t n)
        size_t n)
 
 
{
{
  int w, len = 0;
  int w, len = 0;
  if (!pwcs || n == 0)
  if (!pwcs || n == 0)
    return 0;
    return 0;
  do {
  do {
    if ((w = wcwidth (*pwcs)) < 0)
    if ((w = wcwidth (*pwcs)) < 0)
      return -1;
      return -1;
    len += w;
    len += w;
  } while (*pwcs++ && --n > 0);
  } while (*pwcs++ && --n > 0);
  return len;
  return len;
}
}
 
 

powered by: WebSVN 2.1.0

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