Files
exercism/c/phone-number/phone_number.h

11 lines
150 B
C

#ifndef PHONE_NUMBER_H
#define PHONE_NUMBER_H
#define NUMBER_LENGTH 10
char *phone_number_clean(const char *input);
#endif
#include "br-common.h"