shadeos/include/shade/util.h

7 lines
133 B
C
Raw Normal View History

#ifndef UTIL_H
#define UTIL_H
void memcpy(char *source, char *dest, int nbytes);
void memset(char *dest, char val, int len);
#endif