Line 43:
Line 43:
|<code>void memset(void *str, int c, size_t n)</code>
|<code>void memset(void *str, int c, size_t n)</code>
|Copies the character c (an unsigned char) to the first n characters of the String pointed to by the argument str. See [http://www.tutorialspoint.com/c_standard_library/c_function_memset.htm]
|Copies the character c (an unsigned char) to the first n characters of the String pointed to by the argument str. See [http://www.tutorialspoint.com/c_standard_library/c_function_memset.htm]
+
|-
+
|memclr
+
|<code>void memset(void *str, size_t n)</code>
+
|Like memset but sets the memory to 0
|-
|-
|memcpy
|memcpy