Artifact bb2ee0eef2e831e1dd7ee854a5cbafaf41dad42b3c05564cf73b3264166a8c71:
- File clib/say.h — part of check-in [f7c93df9f4] at 2024-07-10 19:07:16 on branch trunk — periodic update (user: lexi, size: 408) [annotate] [blame] [check-ins using]
#pragma once #include <stdio.h> #include "type.h" #include "buffer.h" typedef void const* say_arg; typedef typeof(say_arg[]) saylist; size_t saybuf(buffer* buf, FILE* dest, const char* fmt, say_arg* args); void sayto(FILE* dest, char const* fmt, say_arg* args); void say(const char* fmt, say_arg* args); void buffer_pushm ( buffer* buf, uintmax_t val, bool neg, uint8_t base, bool ucase );