Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

byte_zero(3) [debian man page]

byte_zero(3)						     Library Functions Manual						      byte_zero(3)

NAME
byte_zero - initialize a string SYNTAX
#include <byte.h> void byte_zero(char *out,size_t len); DESCRIPTION
byte_zero sets out[0], out[1], ..., out[len-1] to 0. SEE ALSO
byte_copy(3), byte_copyr(3) byte_zero(3)

Check Out this Related Man Page

BSTRING(3)						   BSD Library Functions Manual 						BSTRING(3)

NAME
bcmp, bcopy, bzero, memccpy, memchr, memcmp, memcpy, memmove, memset -- byte string operations LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <string.h> int bcmp(const void *b1, const void *b2, size_t len); void bcopy(const void *src, void *dst, size_t len); void bzero(void *b, size_t len); void * memchr(const void *b, int c, size_t len); int memcmp(const void *b1, const void *b2, size_t len); void * memccpy(void *dst, const void *src, int c, size_t len); void * memcpy(void *dst, const void *src, size_t len); void * memmove(void *dst, const void *src, size_t len); void * memset(void *b, int c, size_t len); DESCRIPTION
These functions operate on variable length strings of bytes. They do not check for terminating null bytes as the routines listed in string(3) do. See the specific manual pages for more information. SEE ALSO
bcmp(3), bcopy(3), bzero(3), memccpy(3), memchr(3), memcmp(3), memcpy(3), memmove(3), memset(3) STANDARDS
The functions memchr(), memcmp(), memcpy(), memmove(), and memset() conform to ISO/IEC 9899:1990 (``ISO C90''). HISTORY
The functions bzero() and memccpy() appeared in 4.3BSD; the functions bcmp(), bcopy(), appeared in 4.2BSD. BSD
June 4, 1993 BSD
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Another binary manipulation thread.

As bash cannot cope with a byte value of zero inside a variable then this is a workaround. This code is a DEMO to show how to create a _string_variable_ containing all of the values of 1 to 255 as single characters and 0, (zero), as a two byte character set of \0. The real binary files are 512... (20 Replies)
Discussion started by: wisecracker
20 Replies

2. Programming

Help with djbdns code

Hi, I need help to rewrite djbdns source code to accept 1024 bytes via UDP (limit is 512) #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include "uint16.h" #include "uint32.h" #include "str.h" #include "byte.h" #include "fmt.h" #include "ip4.h"... (0 Replies)
Discussion started by: cain82
0 Replies