1BPRINTF(9) Basic C Library Functions BPRINTF(9)
2
3
4
6 bprintf - Parse a format string and place args' binary value in a
7 buffer
8
10 int bprintf(u32 * bin_buf, size_t size, const char * fmt, ...);
11
13 bin_buf
14 The buffer to place args' binary value
15
16 size
17 The size of the buffer(by words(32bits), not characters)
18
19 fmt
20 The format string to use @...: Arguments for the format string
21
22 ...
23 variable arguments
24
26 The function returns the number of words(u32) written into bin_buf.
27
29Kernel Hackers Manual 3.10 June 2019 BPRINTF(9)