mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
27 lines
378 B
C
27 lines
378 B
C
#include "os.h"
|
|
#include <mp.h>
|
|
#include "dat.h"
|
|
|
|
int
|
|
mpveccmp(mpdigit *a, int alen, mpdigit *b, int blen)
|
|
{
|
|
mpdigit x;
|
|
|
|
while(alen > blen)
|
|
if(a[--alen] != 0)
|
|
return 1;
|
|
while(blen > alen)
|
|
if(b[--blen] != 0)
|
|
return -1;
|
|
while(alen > 0){
|
|
--alen;
|
|
x = a[alen] - b[alen];
|
|
if(x == 0)
|
|
continue;
|
|
if(x > a[alen])
|
|
return -1;
|
|
else
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|