advent-of-c-ode/libs/utils.h

7 lines
113 B
C

#ifndef utils
char *strreplace(char *s, const char *s1, const char *s2);
char *trimwhitespace(char *s);
#endif