logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

strfry - randomize a string

Attributes

       For an explanation of the terms used in this section, see attributes(7).
       ┌─────────────────────────────────────────────────────────────────────────────┬───────────────┬─────────┐
       │ InterfaceAttributeValue   │
       ├─────────────────────────────────────────────────────────────────────────────┼───────────────┼─────────┤
       │ 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);

See Also