2003-08-22 15:03:10 +00:00
|
|
|
#include "safemult.h"
|
|
|
|
|
|
|
|
int umult32(uint32 a,uint32 b,uint32* c) {
|
|
|
|
unsigned long long x=(unsigned long long)a*b;
|
2003-09-05 21:25:51 +00:00
|
|
|
if (x>0xffffffff) return 0;
|
2003-08-22 15:03:10 +00:00
|
|
|
*c=x&0xffffffff;
|
2003-09-05 21:25:51 +00:00
|
|
|
return 1;
|
2003-08-22 15:03:10 +00:00
|
|
|
}
|