[Linux manuál]

strfry: náhodně řetězec

Originální popis anglicky: strfry - randomize a string

Návod, kniha: Linux Programmer's Manual

STRUČNĚ

#include <string.h>
 
char *strfry(char *string);

POPIS / INSTRUKCE

The strfry() function randomizes the contents of string by using rand(3) to randomly swap characters in the string. The result is an anagram of string.

NÁVRATOVÁ HODNOTA

The strfry() functions returns a pointer to the randomized string.

ODPOVÍDAJÍCÍ

The strfry() function is unique to the Linux C Library and GNU C Library.

SOUVISEJÍCÍ

memfrob(3)
1993-04-12 GNU