Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 1f893eff1ed5790c607bbf0f35754b93 > files > 20

check-devel-0.9.8-3.fc15.i686.rpm

#include <stdlib.h>
#include "money.h"

struct Money
{
  int amount;
  char *currency;
};

Money *
money_create (int amount, char *currency)
{
  if (amount < 0)
    {
      return NULL;
    }

  Money *m = malloc (sizeof (Money));
  if (m == NULL)
    {
      return NULL;
    }

  m->amount = amount;
  m->currency = currency;
  return m;
}

int
money_amount (Money * m)
{
  return m->amount;
}

char *
money_currency (Money * m)
{
  return m->currency;
}

void
money_free (Money * m)
{
  free (m);
  return;
}