EmbeddedUnit
stdImpl.h
Go to the documentation of this file.
1 
34 #ifndef __STDIMPL_H__
35 #define __STDIMPL_H__
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
41 #ifndef NULL
42 #define NULL 0
43 #endif
44 
45 char* stdimpl_strcpy(char *s1, const char *s2);
46 char* stdimpl_strcat(char *dst, const char *src);
47 char* stdimpl_strncat(char *dst, const char *src,unsigned int count);
48 int stdimpl_strlen(const char *str);
49 int stdimpl_strcmp(const char *s1, const char *s2);
50 int stdimpl_memcmp(const void *s1, const void *s2, int s);
51 char* stdimpl_itoa(long v,char *string,int r);
52 char* stdimpl_utoa(unsigned long v,char *string,int r);
53 
54 #ifdef __cplusplus
55 }
56 #endif
57 
58 #endif/*__STDIMPL_H__*/