stpcpy.c 488 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (C) 2002 Manuel Novoa III
  3. * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. *
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. #include "_string.h"
  8. #ifdef WANT_WIDE
  9. # define Wstpcpy wcpcpy
  10. #else
  11. # undef stpcpy
  12. # define Wstpcpy stpcpy
  13. #endif
  14. Wchar *Wstpcpy(register Wchar * __restrict s1, const Wchar * __restrict s2)
  15. {
  16. while ( (*s1++ = *s2++) != 0 );
  17. return s1 - 1;
  18. }
  19. #ifndef WANT_WIDE
  20. libc_hidden_def(stpcpy)
  21. #endif