Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 0d50ba4b0190117ea8d232e29fb0d81b > files > 30

lib64check-devel-0.9.12-5.mga5.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;
}