mirror of https://github.com/TheAlgorithms/C
7 lines
83 B
C
7 lines
83 B
C
|
#ifndef ACRONYM_H
|
||
|
#define ACRONYM_H
|
||
|
|
||
|
char *abbreviate(const char *phrase);
|
||
|
|
||
|
#endif
|