xref: /386bsd/usr/share/man/cat3/memset.0 (revision a2142627)
1MEMSET(3)                 386BSD Programmer's Manual                 MEMSET(3)
2
3NNAAMMEE
4     mmeemmsseett - write a byte to byte string
5
6SSYYNNOOPPSSIISS
7     ##iinncclluuddee <<ssttrriinngg..hh>>
8
9     _v_o_i_d *
10     mmeemmsseett(_v_o_i_d *_b, _i_n_t _c, _s_i_z_e__t _l_e_n)
11
12DDEESSCCRRIIPPTTIIOONN
13     The mmeemmsseett() function writes _l_e_n bytes of value _c (converted to an
14     unsigned char) to the string _b.
15
16SSEEEE AALLSSOO
17     bzero(3),  swab(3)
18
19SSTTAANNDDAARRDDSS
20     The mmeemmsseett() function conforms to ANSI C3.159-1989 (``ANSI C'').
21
22BSD Experimental                 June 29, 1991                               1
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67