7 lines
133 B
C
7 lines
133 B
C
|
#ifndef UTIL_H
|
||
|
#define UTIL_H
|
||
|
|
||
|
void memcpy(char *source, char *dest, int nbytes);
|
||
|
void memset(char *dest, char val, int len);
|
||
|
|
||
|
#endif
|