c89d9992c4628f399e5952d7c53388403f7e12a7
Stefan Schuermans implemented IP + ICMP, fixe...

Stefan Schuermans authored 12 years ago

1) #ifndef MEMCPY_H
2) #define MEMCPY_H
3) 
4) /**
5)  * @brief copy memory
6)  * @param[in] dest pointer to destination buffer
7)  * @param[in] src pointer to source data
8)  * @param[in] sz size of data to copy
9)  */
10) void memcpy(void *dest, const void *src, unsigned int sz);
11) 
Stefan Schuermans implement menu on LCD

Stefan Schuermans authored 12 years ago

12) /**
13)  * @brief set memory to fixed value
14)  * @param[in] dest pointer to destination buffer
15)  * @param[in] val fixed value to fill memory with
16)  * @param[in] sz size of memory to fill
17)  */
18) void memset(void *dest, int val, unsigned int sz);
19)