exercism/c/binary/binary.h
2024-08-14 17:30:14 -04:00

8 lines
95 B
C

#ifndef BINARY_H
#define BINARY_H
#define INVALID -1
int convert(const char *input);
#endif