11 lines
150 B
C
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"
|