Simple Example A simple function that is supposed to copy a string into a buffer ... void function(char *str) { char buffer[16]; strcpy(buffer, str); }