amiga-ixemul/stdio/scanf.c

129 lines
3.3 KiB
C

/* $NetBSD: scanf.c,v 1.4 1995/02/02 02:10:29 jtc Exp $ */
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Chris Torek.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
static char sccsid[] = "@(#)scanf.c 8.1 (Berkeley) 6/4/93";
#endif
static char rcsid[] = "$NetBSD: scanf.c,v 1.4 1995/02/02 02:10:29 jtc Exp $";
#endif /* LIBC_SCCS and not lint */
#define _KERNEL
#include "ixemul.h"
#include "my_varargs.h"
#include <stdio.h>
#ifdef NATIVE_MORPHOS
#define __svfscanf my___svfscanf
int __svfscanf(FILE *, const char *, my_va_list);
#endif
int
scanf(char const *fmt, ...)
{
int ret;
my_va_list ap;
usetup;
if (u.u_parent_userdata)u_ptr=u.u_parent_userdata;
my_va_start(ap, fmt);
ret = __svfscanf(stdin, fmt, ap);
my_va_end(ap);
return (ret);
}
#ifdef NATIVE_MORPHOS
int
_varargs68k_scanf(char const *fmt, char *ap1)
{
my_va_list ap;
usetup;
my_va_init_68k(ap, ap1);
return __svfscanf(stdin, fmt, ap);
}
asm(" .section \".text\"
.type _stk_scanf,@function
.globl _stk_scanf
_stk_scanf:
andi. 11,1,15
mr 12,1
bne- .align_scanf
b scanf
.align_scanf:
addi 11,11,128
mflr 0
neg 11,11
stw 0,4(1)
stwux 1,1,11
stw 4,12(1)
stw 5,16(1)
stw 6,20(1)
stw 7,24(1)
stw 8,28(1)
stw 9,32(1)
stw 10,36(1)
bc 4,6,.nofloat_scanf
stfd 1,40(1)
stfd 2,48(1)
stfd 3,56(1)
stfd 4,64(1)
stfd 5,72(1)
stfd 6,80(1)
stfd 7,88(1)
stfd 8,96(1)
.nofloat_scanf:
addi 4,1,104
lis 0,0x100
addi 12,12,8
addi 11,1,8
stw 0,0(4)
stw 12,4(4)
stw 11,8(4)
bl vscanf
lwz 1,0(1)
lwz 0,4(1)
mtlr 0
blr
");
#endif