]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/IA32_flat_GCC_Galileo_Gen_2/Support_Files/string.h
commit 9f316c246baafa15c542a5aea81a94f26e3d6507
[freertos] / FreeRTOS / Demo / IA32_flat_GCC_Galileo_Gen_2 / Support_Files / string.h
1 \r
2 /*\r
3  * Temporary file for use only during development when there are no library or\r
4  * header files.\r
5  */\r
6 \r
7 #ifndef STRING_H\r
8 #define STRING_H\r
9 \r
10 //typedef unsigned long size_t;\r
11 \r
12 /*\r
13  *  Extremely crude standard library implementations in lieu of having a C\r
14  *  library.\r
15  */\r
16 unsigned long strlen( const char* pcString );\r
17 int strcmp( const char *pcString1, const char *pcString2 );\r
18 void *memset( void *pvDest, int iValue, unsigned long ulBytes );\r
19 void *memcpy( void *pvDest, const void *pvSource, unsigned long ulBytes );\r
20 int memcmp( const void *pvMem1, const void *pvMem2, unsigned long ulBytes );\r
21 #endif /* string_h */\r