mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-12-22 14:43:10 -05:00
9 lines
95 B
C
9 lines
95 B
C
|
#ifndef BINARY_H
|
||
|
#define BINARY_H
|
||
|
|
||
|
#define INVALID -1
|
||
|
|
||
|
int convert(const char *input);
|
||
|
|
||
|
#endif
|