Sophie

Sophie

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

lib64check-devel-0.9.12-5.mga5.x86_64.rpm

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

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

int
money_amount (Money * m)
{
  return 0;
}

char *
money_currency (Money * m)
{
  return NULL;
}

void
money_free (Money * m)
{
  return;
}