mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
8 lines
95 B
C
8 lines
95 B
C
#ifndef BINARY_H
|
|
#define BINARY_H
|
|
|
|
#define INVALID -1
|
|
|
|
int convert(const char *input);
|
|
|
|
#endif
|