~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to wcsmbs/wchar.h

  • Committer: Steve Langasek
  • Date: 2011-02-18 21:18:44 UTC
  • mfrom: (103.1.7 eglibc)
  • Revision ID: steve.langasek@linaro.org-20110218211844-lodmi8b1qhyq3f3x
Tags: 2.13~pre1-0ubuntu1+multiarch.1
merge from natty

Show diffs side-by-side

added added

removed removed

Lines of Context:
555
555
extern long double wcstold_l (__const wchar_t *__restrict __nptr,
556
556
                              wchar_t **__restrict __endptr,
557
557
                              __locale_t __loc) __THROW;
558
 
#endif /* GNU */
559
 
 
560
 
 
561
 
#ifdef  __USE_XOPEN2K8
 
558
 
 
559
 
562
560
/* Copy SRC to DEST, returning the address of the terminating L'\0' in
563
561
   DEST.  */
564
 
extern wchar_t *wcpcpy (wchar_t *__dest, __const wchar_t *__src) __THROW;
 
562
extern wchar_t *wcpcpy (wchar_t *__restrict __dest,
 
563
                        __const wchar_t *__restrict __src) __THROW;
565
564
 
566
565
/* Copy no more than N characters of SRC to DEST, returning the address of
567
566
   the last character written into DEST.  */
568
 
extern wchar_t *wcpncpy (wchar_t *__dest, __const wchar_t *__src, size_t __n)
 
567
extern wchar_t *wcpncpy (wchar_t *__restrict __dest,
 
568
                         __const wchar_t *__restrict __src, size_t __n)
569
569
     __THROW;
570
570
#endif  /* use GNU */
571
571