strfry

Name

strfry -- randomize a string

Synopsis

#include <string.h>

char *strfry(char *string);

Description

The strfry() function randomizes the contents of string by using rand(3) to randomly swap characters in the string. The result is an anagram of string.

Return Value

The strfry() functions returns a pointer to the randomized string.