Penguin
Annotated edit history of bstring(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 BSTRING
2 !!!BSTRING
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 SEE ALSO
7 ----
8 !!NAME
9
10
11 bcmp, bcopy, bzero, memccpy, memchr, memcmp, memcpy, memfrob, memmem, memmove, memset - byte string operations
12 !!SYNOPSIS
13
14
15 __#include
16 __''s1''__, const void *__''s2''__, int__ ''n''__);
17 void bcopy(const void *__''src''__, void *__''dest''__, int__ ''n''__);
18 void bzero(void *__''s''__, int__ ''n''__);
19 void *memccpy(void *__''dest''__, const void *__''src''__, int__ ''c''__, size_t__ ''n''__);
20 void *memchr(const void *__''s''__, int__ ''c''__, size_t__ ''n''__);
21 int memcmp(const void *__''s1''__, const void *__''s2''__, size_t__ ''n''__);
22 void *memcpy(void *__''dest''__, const void *__''src''__, size_t__ ''n''__);
23 void *memfrob(void *__''s''__, size_t__ ''n''__);
24 void *memmem(const void *__''needle''__, size_t__ ''needlelen''__,
25 const void *__''haystack''__, size_t__ ''haystacklen''__);
26 void *memmove(void *__''dest''__, const void *__''src''__, size_t__ ''n''__);
27 void *memset(void *__''s''__, int__ ''c''__, size_t__ ''n''__);
28 __
29 !!DESCRIPTION
30
31
32 The byte string functions perform operations on strings that
33 are not NULL-terminated. See the individual man pages for
34 descriptions of each function.
35 !!SEE ALSO
36
37
38 bcmp(3), bcopy(3), bzero(3),
39 memccpy(3), memchr(3), memcmp(3),
40 memcpy(3), memfrob(3), memmem(3),
41 memmove(3), memset(3)
42 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.