Sponsor:

Your company here, and a link to your site. Click to find out more.

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).

InterfaceAttributeValue
strfry()Thread safetyMT-Safe

Standards

GNU.

See Also

memfrob(3), string(3)

Referenced By

memfrob(3), string(3).

2023-10-31 Linux man-pages 6.7