diff options
Diffstat (limited to 'misc.c')
-rw-r--r-- | misc.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |