mirror of
https://github.com/php/php-src.git
synced 2025-01-19 02:03:47 +08:00
ext/standard/md5: include cleanup
This commit is contained in:
parent
9521d21681
commit
cd985de190
@ -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…
Reference in New Issue
Block a user