compilation errors fixed, debug now!
[my-code/arm.git] / betty / functions.h
1 /*
2  * * functions.h - functions header file
3  *
4  * author: hackbard@hackdaworld.org
5  *
6  */
7
8 #ifndef FUNCTIONS_H
9 #define FUNCTIONS_H
10
11 #include "lpc2xxx.h"
12 #include "types.h"
13
14 /*
15  * function prototypes
16  */
17
18 int strlen(char *string);
19 int strncmp(char *a,char *b,int n);
20 int strncpy(char *d,char *s,int n);
21 int memset(u8 *s,int v,int n);
22 int memcpy(u8 *d,u8 *s,int n);
23 int counttok(u8 *s,u8 delim);
24
25 #endif