1fmt_strm(3) Library Functions Manual fmt_strm(3)
2
3
4
6 fmt_strm - write multiple ASCII strings
7
9 #include <fmt.h>
10
11 size_t fmt_strm(char *dest,const char *source, ...);
12
14 fmt_strm copies all leading nonzero bytes from source and following
15 function arguments to dest and returns the number of bytes it copied.
16
17 fmt_strm does not append \0.
18
19 If dest equals FMT_LEN (i.e. is zero), fmt_str returns the number of
20 bytes it would have written, i.e. the number of leading nonzero bytes
21 of source and following function arguments.
22
24 fmt_str(3), strcpy(3)
25
26
27
28 fmt_strm(3)