RosettaCodeData/Task/Executable-library/C/executable-library-1.c

8 lines
116 B
C

#ifndef HAILSTONE
#define HAILSTONE
long hailstone(long, long**);
void free_sequence(long *);
#endif/*HAILSTONE*/