Deleted Added
full compact
wcschr.c (77117) wcschr.c (86170)
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: wcschr.c,v 1.2 2000/12/21 05:07:25 itojun Exp
27 */
28
29#include <sys/cdefs.h>
30#if defined(LIBC_SCCS) && !defined(lint)
31__RCSID("$NetBSD: wcschr.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: wcschr.c,v 1.2 2000/12/21 05:07:25 itojun Exp
27 */
28
29#include <sys/cdefs.h>
30#if defined(LIBC_SCCS) && !defined(lint)
31__RCSID("$NetBSD: wcschr.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: head/lib/libc/string/wcschr.c 77117 2001-05-24 08:47:42Z obrien $";
36#endif
33__FBSDID("$FreeBSD: head/lib/libc/string/wcschr.c 86170 2001-11-07 19:55:16Z obrien $");
37
38#include <assert.h>
39#include <wchar.h>
40
41wchar_t *
42wcschr(s, c)
43 const wchar_t *s;
44 wchar_t c;

--- 13 unchanged lines hidden ---
34
35#include <assert.h>
36#include <wchar.h>
37
38wchar_t *
39wcschr(s, c)
40 const wchar_t *s;
41 wchar_t c;

--- 13 unchanged lines hidden ---