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

7 lines
113 B
C
Raw Normal View History

2023-12-05 00:07:15 -05:00
#ifndef utils
char *strreplace(char *s, const char *s1, const char *s2);
char *trimwhitespace(char *s);
2023-12-05 00:07:15 -05:00
#endif