mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-12 14:40:46 -05:00
9 lines
113 B
C
9 lines
113 B
C
|
#ifndef COLLATZ_CONJECTURE_H
|
||
|
#define COLLATZ_CONJECTURE_H
|
||
|
|
||
|
#define ERROR_VALUE -1
|
||
|
|
||
|
int steps(int start);
|
||
|
|
||
|
#endif
|