strfry - randomize a string
Contents
Attributes
For an explanation of the terms used in this section, see attributes(7).
┌─────────────────────────────────────────────────────────────────────────────┬───────────────┬─────────┐
│ Interface │ Attribute │ Value │
├─────────────────────────────────────────────────────────────────────────────┼───────────────┼─────────┤
│ strfry() │ Thread safety │ MT-Safe │
└─────────────────────────────────────────────────────────────────────────────┴───────────────┴─────────┘
Description
The strfry() function randomizes the contents of string by randomly swapping characters in the string.
The result is an anagram of string.
Library
Standard C library (libc, -lc)
Name
strfry - randomize a string
Return Value
The strfry() functions returns a pointer to the randomized string.
See Also
memfrob(3), string(3) Linux man-pages 6.9.1 2024-05-02 strfry(3)
Standards
GNU.
Synopsis
#define_GNU_SOURCE /* See feature_test_macros(7) */ #include<string.h>char*strfry(char*string);
