@@ -182,11 +182,11 @@ static inline int8_t create_table( struct BasePRNGObject *obj, uint32_t *table )
182
182
* @return pointer to a dynamically allocated PRNG or, if unable to allocate memory, a null pointer
183
183
*
184
184
* @example
185
+ * #include "stdlib/random/base/minstd_shuffle.h"
186
+ * #include "stdlib/random/base/shared.h"
185
187
* #include <stdlib.h>
186
188
* #include <stdio.h>
187
189
* #include <stdint.h>
188
- * #include "stdlib/random/base.h"
189
- * #include "stdlib/random/base/minstd_shuffle.h"
190
190
*
191
191
* // Create a PRNG:
192
192
* struct BasePRNGObject *obj = stdlib_base_random_minstd_shuffle_allocate( 12345 );
@@ -273,11 +273,11 @@ struct BasePRNGObject * stdlib_base_random_minstd_shuffle_allocate( const int32_
273
273
* @param obj PRNG object
274
274
*
275
275
* @example
276
+ * #include "stdlib/random/base/minstd_shuffle.h"
277
+ * #include "stdlib/random/base/shared.h"
276
278
* #include <stdlib.h>
277
279
* #include <stdio.h>
278
280
* #include <stdint.h>
279
- * #include "stdlib/random/base.h"
280
- * #include "stdlib/random/base/minstd_shuffle.h"
281
281
*
282
282
* // Create a PRNG:
283
283
* struct BasePRNGObject *obj = stdlib_base_random_minstd_shuffle_allocate( 12345 );
@@ -325,11 +325,11 @@ void stdlib_base_random_minstd_shuffle_free( struct BasePRNGObject *obj ) {
325
325
* @return status code
326
326
*
327
327
* @example
328
+ * #include "stdlib/random/base/minstd_shuffle.h"
329
+ * #include "stdlib/random/base/shared.h"
328
330
* #include <stdlib.h>
329
331
* #include <stdio.h>
330
332
* #include <stdint.h>
331
- * #include "stdlib/random/base.h"
332
- * #include "stdlib/random/base/minstd_shuffle.h"
333
333
*
334
334
* // Create a PRNG:
335
335
* struct BasePRNGObject *obj = stdlib_base_random_minstd_shuffle_allocate( 12345 );
@@ -374,11 +374,11 @@ int8_t stdlib_base_random_minstd_shuffle_seed( const struct BasePRNGObject *obj,
374
374
* @return pointer to a copy of the PRNG's internal state or, if unable to allocate memory, a null pointer
375
375
*
376
376
* @example
377
+ * #include "stdlib/random/base/minstd_shuffle.h"
378
+ * #include "stdlib/random/base/shared.h"
377
379
* #include <stdlib.h>
378
380
* #include <stdio.h>
379
381
* #include <stdint.h>
380
- * #include "stdlib/random/base.h"
381
- * #include "stdlib/random/base/minstd_shuffle.h"
382
382
*
383
383
* // Create a PRNG:
384
384
* struct BasePRNGObject *obj = stdlib_base_random_minstd_shuffle_allocate( 12345 );
@@ -423,11 +423,11 @@ void * stdlib_base_random_minstd_shuffle_state( const struct BasePRNGObject *obj
423
423
* @return status code
424
424
*
425
425
* @example
426
+ * #include "stdlib/random/base/minstd_shuffle.h"
427
+ * #include "stdlib/random/base/shared.h"
426
428
* #include <stdlib.h>
427
429
* #include <stdio.h>
428
430
* #include <stdint.h>
429
- * #include "stdlib/random/base.h"
430
- * #include "stdlib/random/base/minstd_shuffle.h"
431
431
*
432
432
* // Create a PRNG:
433
433
* struct BasePRNGObject *obj = stdlib_base_random_minstd_shuffle_allocate( 12345 );
0 commit comments