strfry

Name

strfry -- randomize a string (DEPRECATED)

Synopsis

#include <string.h>

char * strfry(char * string);

Description

The strfry() function is deprecated from the LSB and is expected to disappear from a future version of the LSB.

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.