Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 7b0651d8a23a5a77ff8f5fd073fe8e19 > files > 29

lib64check-devel-0.9.10-2.mga4.x86_64.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;
}