// Here’s some code to test the string-stuff module. #include "string-stuff.h" // Get the function declarations. #include int main() { char buf[80]; remove_spaces(buf, "alpha beta gamma"); printf("No spaces: \"%s\"\n", buf); reverse(buf, "delta epsilon zeta"); printf("Reversed: \"%s\"\n", buf); uppercase(buf, "eta theta"); printf("Uppercase: \"%s\"\n", buf); return 0; }