sscanf.c (f70177e76e605ec6e6cd5b938fa77ade5d380e87) sscanf.c (ce51cf0392a0b2cc80e5ddcdb01394a303093443)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 21 unchanged lines hidden (view full) ---

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 21 unchanged lines hidden (view full) ---

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#if defined(LIBC_SCCS) && !defined(lint)
38#if 0
38static char sccsid[] = "@(#)sscanf.c 8.1 (Berkeley) 6/4/93";
39static char sccsid[] = "@(#)sscanf.c 8.1 (Berkeley) 6/4/93";
40#endif
41static const char rcsid[] =
42 "$Id$";
39#endif /* LIBC_SCCS and not lint */
40
41#include <stdio.h>
42#include <string.h>
43#if __STDC__
44#include <stdarg.h>
45#else
46#include <varargs.h>
47#endif
48#include "local.h"
49
43#endif /* LIBC_SCCS and not lint */
44
45#include <stdio.h>
46#include <string.h>
47#if __STDC__
48#include <stdarg.h>
49#else
50#include <varargs.h>
51#endif
52#include "local.h"
53
54static int eofread __P((void *, char *, int));
55
50/* ARGSUSED */
51static int
52eofread(cookie, buf, len)
53 void *cookie;
54 char *buf;
55 int len;
56{
57

--- 34 unchanged lines hidden ---
56/* ARGSUSED */
57static int
58eofread(cookie, buf, len)
59 void *cookie;
60 char *buf;
61 int len;
62{
63

--- 34 unchanged lines hidden ---