view intercom/gsm/gsm_opti.c @ 2:13be24d74cd2

import intercom-0.4.1
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Fri, 25 Jun 2010 09:57:52 +0200
parents
children
line wrap: on
line source

/*
 * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
 * Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
 * details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
 */

/* $Header: /home/kbs/jutta/src/gsm/gsm-1.0/src/RCS/gsm_option.c,v 1.1 1992/10/28 00:15:50 jutta Exp $ */

#include "private.h"

#include "gsm.h"
#include "proto.h"

int gsm_option P3((r, opt, val), gsm r, int opt, int *val)
{
  int result = -1;

  switch (opt) {
  case GSM_OPT_VERBOSE:
#ifndef	NDEBUG
    result = r->verbose;
    if (val)
      r->verbose = *val;
#endif
    break;

  case GSM_OPT_FAST:

#if	defined(FAST) && defined(USE_FLOAT_MUL)
    result = r->fast;
    if (val)
      r->fast = !!*val;
#endif
    break;

  default:
    break;
  }
  return result;
}

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.