wcscpy.c (5864b79cd2852339f3025ee81769233071d60934) | wcscpy.c (de5fe5d53b634e506f94a6df3a9261aa20fa152f) |
---|---|
1/*- 2 * Copyright (c)1999 Citrus Project, 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * 26 * citrus Id: wcscpy.c,v 1.2 2000/12/21 04:51:09 itojun Exp 27 */ 28 29#include <sys/cdefs.h> 30#if defined(LIBC_SCCS) && !defined(lint) 31__RCSID("$NetBSD: wcscpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); 32#endif /* LIBC_SCCS and not lint */ | 1/*- 2 * Copyright (c)1999 Citrus Project, 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * 26 * citrus Id: wcscpy.c,v 1.2 2000/12/21 04:51:09 itojun Exp 27 */ 28 29#include <sys/cdefs.h> 30#if defined(LIBC_SCCS) && !defined(lint) 31__RCSID("$NetBSD: wcscpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $"); 32#endif /* LIBC_SCCS and not lint */ |
33#ifndef lint 34static const char rcsid[] = 35 "$FreeBSD$"; 36#endif | 33__FBSDID("$FreeBSD$"); |
37 38#include <assert.h> 39#include <wchar.h> 40 41wchar_t * 42wcscpy(s1, s2) 43 wchar_t *s1; 44 const wchar_t *s2; --- 13 unchanged lines hidden --- | 34 35#include <assert.h> 36#include <wchar.h> 37 38wchar_t * 39wcscpy(s1, s2) 40 wchar_t *s1; 41 const wchar_t *s2; --- 13 unchanged lines hidden --- |