md5-c
md5-c copied to clipboard
Unnecessary header includes
Some of the includes from the header file could be moved to the source file since they aren't needed in the header, for example stdlib.h.
https://github.com/Zunawe/md5-c/commit/d1ff6fcfa00179e87adc7160dc32a6c99c5b812c#diff-25196feeaf9204f4db47ff20fc04462a3411b64db47130546f85f366fa4b769aR4
md5.c : 208 char *input_buffer = malloc(1024); Here "malloc" is used, which needs "stdlib.h".