/* * Copyright (C) 1996, jack * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /* $Id: mbscpy.c,v 1.1 1996/07/01 19:14:54 jack Exp $ */ #include #include unsigned char * _mbscpy (unsigned char *ud, const unsigned char *us) { unsigned char *top = ud; size_t bytes; while (1) { bytes = _mbclen (us); if (bytes == 1 && *us == '\0') break; while (bytes-- > 0) *ud++ = *us++; } *ud++ = '\0'; return top; }