Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
random.h
Go to the documentation of this file.
1
3
4#pragma once
5
14#ifndef UTIL_API
15#if !defined(__CYGWIN__) && defined(__GNUC__) && !defined(__MINGW32__)
16#define UTIL_API __attribute__((visibility("hidden")))
17#else
18#define UTIL_API /* nothing */
19#endif
20#endif
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
33UTIL_API int *gv_permutation(int bound);
34
42UTIL_API int gv_random(int bound);
43
44#ifdef __cplusplus
45}
46#endif
UTIL_API int * gv_permutation(int bound)
Definition random.c:13
UTIL_API int gv_random(int bound)
Definition random.c:89
#define UTIL_API
Definition random.h:18