heptagon/examples/random/random.h

15 lines
207 B
C
Raw Normal View History

#ifndef RANDOM_H
#define RANDOM_H
/* Example of a combinatorial function */
typedef struct Random__random_out {
float z;
} Random__random_out;
void Random__random_step(Random__random_out *o);
#endif