summaryrefslogtreecommitdiff
path: root/src/dice_fwd.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dice_fwd.hpp')
-rw-r--r--src/dice_fwd.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/dice_fwd.hpp b/src/dice_fwd.hpp
index 72b3b5ca..6dd0775e 100644
--- a/src/dice_fwd.hpp
+++ b/src/dice_fwd.hpp
@@ -1,12 +1,9 @@
#pragma once
-#include "h-basic.h"
-
typedef struct dice_type dice_type;
struct dice_type;
void dice_init(dice_type *dice, long base, long num, long sides);
-bool_ dice_parse(dice_type *dice, cptr s);
-void dice_parse_checked(dice_type *dice, cptr s);
+void dice_parse_checked(dice_type *dice, const char *s);
long dice_roll(dice_type *dice);
void dice_print(dice_type *dice, char *buf);