mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 13:20:48 -05:00
8 lines
113 B
C
8 lines
113 B
C
#ifndef COLLATZ_CONJECTURE_H
|
|
#define COLLATZ_CONJECTURE_H
|
|
|
|
#define ERROR_VALUE -1
|
|
|
|
int steps(int start);
|
|
|
|
#endif
|