X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=misc.c;h=ba834fdffd44b84cef98268a2e2cbadc8dea63b2;hb=a678b68b39f21f8b2853e45c6138d815a82a3423;hp=ee2ac25cd95a90a07b559548240959359f7391bd;hpb=e9aff2568f200be6cf47ec0bd945902a636bbd71;p=open-adventure.git diff --git a/misc.c b/misc.c index ee2ac25..ba834fd 100644 --- a/misc.c +++ b/misc.c @@ -50,6 +50,23 @@ void packed_to_token(long packed, char token[6]) } } +/* Hide the fact that wods are corrently packed longs */ + +bool wordeq(token_t a, token_t b) +{ + return a == b; +} + +bool wordempty(token_t a) +{ + return a == 0; +} + +void wordclear(token_t *v) +{ + *v = 0; +} + /* I/O routines (SPEAK, PSPEAK, RSPEAK, SETPRM, GETIN, YES) */ void speak(const char* msg)