mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
170 B
20 lines
170 B
9 years ago
|
#include "fe.h"
|
||
|
|
||
|
/*
|
||
|
h = 0
|
||
|
*/
|
||
|
|
||
|
void fe_0(fe h)
|
||
|
{
|
||
|
h[0] = 0;
|
||
|
h[1] = 0;
|
||
|
h[2] = 0;
|
||
|
h[3] = 0;
|
||
|
h[4] = 0;
|
||
|
h[5] = 0;
|
||
|
h[6] = 0;
|
||
|
h[7] = 0;
|
||
|
h[8] = 0;
|
||
|
h[9] = 0;
|
||
|
}
|