shadeos/include/shade/util.h

8 lines
171 B
C
Raw Normal View History

2022-05-13 03:08:46 +00:00
#ifndef UTIL_H
#define UTIL_H
void memcpy(char *source, char *dest, int nbytes);
void memset(char *dest, char val, int len);
void int_to_ascii(int n, char str[]);
#endif