blob: be36f46381606fb77c487cdfa179d1de1137cccf [file] [log] [blame]
PulkoMandy17fc7592022-07-28 18:27:54 +02001from)
2{
3 DTTTYPE to=0;
4 int i,j=0;
5 for(i=sizeof(from.a)-1;i>=0;i--)
6 to=(to<<8)|(from.a[i]&255);
7
8 to<<=(sizeof(to)*8)-BITSIZE;
9 to>>=(sizeof(to)*8)-BITSIZE;
10 return to;
11}