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

libwget-random - Random functions

Author

       Generated automatically by Doxygen for wget2 from the source code.

wget2                                             Version 2.2.0                                libwget-random(3)

Detailed Description

       This is wrapper code around gnulib's srandom_r() and random_r() with automatic seeding

Function Documentation

voidwget_random_init(void)
       Random API initialization, allocating/preparing the internal resources.

       On systems with automatic library constructors, this function doesn't have to be called explicitly.

       This function is not thread-safe.

   voidwget_random_exit(void)
       Random API deinitialization, free'ing all internal resources.

       On systems with automatic library destructors, this function doesn't have to be called explicitly.

       This function is not thread-safe.

   intwget_random(void)Returns
           Random value between 0 and RAND_MAX

       This functions wraps around gnulib's random_r(). It performs a thread-safe seeding on the first use, if
       not done before by wget_srandom();

   voidwget_srandom(unsignedintseed)Parametersseed Value to seed the random generator

       This functions wraps around srandom_r() to make a thread-safe seeding for wget_random().

Name

       libwget-random - Random functions

Synopsis

FunctionsINITIALIZER (random_init)
       void wget_random_init (void)
       void wget_random_exit (void)
       int wget_random (void)
       void wget_srandom (unsigned int seed)

See Also