X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Farm.git;a=blobdiff_plain;f=betty%2Ffunctions.h;fp=betty%2Ffunctions.h;h=db5529671a62452378103f23edacc214e1f72333;hp=0000000000000000000000000000000000000000;hb=62c9b5c57e036a7a2cae5670349b86b060775706;hpb=e9e1115af8d1609165b3e5baf0aef838f29e91a1 diff --git a/betty/functions.h b/betty/functions.h new file mode 100644 index 0000000..db55296 --- /dev/null +++ b/betty/functions.h @@ -0,0 +1,23 @@ +/* + * * functions.h - functions header file + * + * author: hackbard@hackdaworld.org + * + */ + +#ifndef FUNCTIONS_H +#define FUNCTIONS_H + +#include "lpc2xxx.h" +#include "types.h" + +/* + * function prototypes + */ + +int strlen(char *string); +int strncmp(char *a,char *b,int n); +int strncpy(char *d,char *s,int n); +int mset(u8 *s,u8 v,int n); + +#endif