Note: Replace "for loop" with standard memset if possible. */
| 328 | /* Note: Replace "for loop" with standard memset if possible. |
| 329 | */ |
| 330 | static void MD5_memset (POINTER output, int value, unsigned int len) |
| 331 | { |
| 332 | |
| 333 | #ifndef USE_MEM |
| 334 | unsigned int i; |
| 335 | for (i = 0; i < len; i++) |
| 336 | ((char *)output)[i] = (char)value; |
| 337 | #else |
| 338 | memset( output, value, len ); |
| 339 | #endif |
| 340 | } |
no outgoing calls
no test coverage detected