Differences From Artifact [84789a032f]:
- File clib/say.c — part of check-in [0894d03fbf] at 2023-04-15 20:47:04 on branch trunk — add generic routines from vesper (user: lexi, size: 5942) [annotate] [blame] [check-ins using]
To Artifact [f514e0efd7]:
- File clib/say.c — part of check-in [f7c93df9f4] at 2024-07-10 19:07:16 on branch trunk — periodic update (user: lexi, size: 5935) [annotate] [blame] [check-ins using]
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# define _say_use_fd
#endif
#ifdef _say_use_fd
# include <unistd.h>
#endif
static void buffer_pushm
( buffer* buf,
uintmax_t val,
bool neg,
uint8_t base,
bool ucase
) {
char nb [48] = {};
|
| |
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# define _say_use_fd #endif #ifdef _say_use_fd # include <unistd.h> #endif void buffer_pushm ( buffer* buf, uintmax_t val, bool neg, uint8_t base, bool ucase ) { char nb [48] = {}; |