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