mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
14 lines
257 B
C
14 lines
257 B
C
#ifndef BYTE_H
|
|
#define BYTE_H
|
|
|
|
extern unsigned int byte_chr();
|
|
extern unsigned int byte_rchr();
|
|
extern void byte_copy();
|
|
extern void byte_copyr();
|
|
extern int byte_diff();
|
|
extern void byte_zero();
|
|
|
|
#define byte_equal(s,n,t) (!byte_diff((s),(n),(t)))
|
|
|
|
#endif
|