1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ext/standard/md5: include cleanup

This commit is contained in:
Max Kellermann
2023-01-04 21:30:43 +01:00
committed by George Peter Banyard
parent 9521d21681
commit cd985de190
2 changed files with 4 additions and 1 deletions

View File

@@ -16,7 +16,6 @@
+----------------------------------------------------------------------+
*/
#include "php.h"
#include "md5.h"
PHPAPI void make_digest(char *md5str, const unsigned char *digest) /* {{{ */

View File

@@ -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);