strfry

Name

strfry -- randomize a string

Synopsis

#include <string.h>

char *strfry(char *string);

Description

strfry 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

strfry returns a pointer to the randomized string.