mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
ext/standard/md5: include cleanup
This commit is contained in:
parent
9521d21681
commit
cd985de190
2 changed files with 4 additions and 1 deletions
|
@ -16,7 +16,6 @@
|
|||
+----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
#include "php.h"
|
||||
#include "md5.h"
|
||||
|
||||
PHPAPI void make_digest(char *md5str, const unsigned char *digest) /* {{{ */
|
||||
|
|
|
@ -18,6 +18,10 @@
|
|||
#ifndef MD5_H
|
||||
#define MD5_H
|
||||
|
||||
#include "php.h" // for PHPAPI
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
PHPAPI void make_digest(char *md5str, const unsigned char *digest);
|
||||
PHPAPI void make_digest_ex(char *md5str, const unsigned char *digest, int len);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue