mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-22 14:32:25 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
9 lines
196 B
C
9 lines
196 B
C
#ifndef BYTE_H
|
|
#define BYTE_H
|
|
|
|
extern void byte_zero(void *,long long);
|
|
extern void byte_copy(void *,long long,const void *);
|
|
extern int byte_isequal(const void *,long long,const void *);
|
|
|
|
#endif
|