]> Joshua Wise's Git repositories - netwatch.git/blob - include/minilib.h
Wkesden in grubload
[netwatch.git] / include / minilib.h
1 #ifndef MINILIB_H
2 #define MINILIB_H
3
4 void memcpy(void *dest, void *src, int bytes);
5 void memmove(void *dest, void *src, int bytes);
6 int strcmp(const char *a2, const char *a1);
7 void strcpy(char *a2, const char *a1);
8 void tohex(char *s, unsigned long l);
9
10 void puts(const char *c);
11 void puthex(unsigned long l);
12
13 #endif
This page took 0.023198 seconds and 4 git commands to generate.