summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/misc.c b/misc.c
index 8354b69..429e458 100644
--- a/misc.c
+++ b/misc.c
@@ -74,6 +74,10 @@ static inline bool streq(const char *a, const char *b) {
return strcmp(a, b) == 0;
}
+static inline void fprint_string(FILE *out, String s) {
+ fwrite(s.str, 1, s.len, out);
+}
+
static inline U32 rand_u32(U32 seed) {
U64 seed64 = (U64)seed;
return (U32)((seed64 * 0x832f0fda4e1a8642 + 0x41d49cd5459a2ab4) >> 32);