summaryrefslogtreecommitdiff
path: root/include/byte.h
blob: 3ce3b3167ff4f9d34c94b115b5f33b2ad581ecbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef BYTE_H
#define BYTE_H

/**
  * @file byte.h	
  * @authors djb, feh, jmh
  * @ref s/qmail
  */

extern unsigned int byte_chr(char *, unsigned int, int);
extern unsigned int byte_rchr(char *, unsigned int, int);
extern void byte_copy(void *, unsigned int, const void *);
extern void byte_copyr(void *, unsigned int, const void *);
extern int byte_diff(const void *, unsigned int, const void *);
extern void byte_zero(void *, unsigned int);
extern void byte_fill(void *, unsigned int, int);

#define byte_equal(s,n,t) (!byte_diff((s),(n),(t)))

#endif