#include #include #include "usg_common.h" int main(void) { // char input[] = "A bird came down the walk"; char input[] = "bird"; printf("Parsing the input string '%s'\n", input); char *token = strtok(input, " "); while(token) { puts(token); token = strtok(NULL, " "); } }