/* $Id: bdcombinatorics.h $ */
#ifndef BDCOMBINATORICS_H_
#define BDCOMBINATORICS_H_ 1
#include "bigd.h"
#ifdef __cplusplus
extern "C" {
#endif
int bd_factorial(BIGD result, int n);
int bd_binomial(BIGD result, int n, int k);
int bd_permutations(BIGD result, int n, int k);
#ifdef __cplusplus
}
#endif
#endif /* BDCOMBINATORICS_H_ */