mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-12 14:40:46 -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
|