strfry - Man Page
randomize a string
Library
Standard C library (libc, -lc)
Synopsis
#define _GNU_SOURCE /* See feature_test_macros(7) */ #include <string.h> char *strfry(char *string);
Description
The strfry() function randomizes the contents of string by randomly swapping characters in the string. The result is an anagram of string.
Return Value
The strfry() functions returns a pointer to the randomized string.
Attributes
For an explanation of the terms used in this section, see attributes(7).
Interface | Attribute | Value |
---|---|---|
strfry() | Thread safety | MT-Safe |
Standards
GNU.
See Also
Referenced By
2024-05-02 Linux man-pages 6.9.1