/* call-seq:
 *      bz_is_time_manual_start? -> true or false
 *
 *      This method returns true when -timemanual is set,
 *      false when not set.
 */ 

static VALUE
bzflag_bz_isTimeManualStart(VALUE self)
{

        if (bz_isTimeManualStart())
                return Qtrue;

        return Qfalse;

}