fmodf.c 759 Bytes
/*
=============================================================================
        Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
        
        $RCSfile: fmodf.c,v $
        $Revision: 1.1.1.1 $
        $Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:fmod
-----------------------------------------------------------------------------
書式:  #include <math.h>
        float fmodf(float x, float y);
引数:  x 割られる数
        y 割る数
戻り値:x / y の剰余を返す
説明:  x / y の剰余を計算する。
-----------------------------------------------------------------------------
*/

float fmodf(float x, float y)
{
    int a;

    if (!y) return  0;
    a = x / y;
    return  (x - a * y);
}