dice/dice.h
2025-09-14 22:02:49 +02:00

10 lines
231 B
C

#ifndef _dice_h
#define _dice_h
extern int rolld(int d);
extern int rollnd(int n,int d,int* i);
extern int process_dice_format(const char* format,int* num,int* die);
extern void roll_and_print(int n, int d);
#endif /* _dice_h */