RosettaCodeData/Task/Executable-library/C/executable-library-1.c
2023-07-01 13:44:08 -04:00

7 lines
116 B
C

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