mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
13 lines
146 B
C
13 lines
146 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
|
|
int
|
|
equivip(uchar *a, uchar *b)
|
|
{
|
|
int i;
|
|
|
|
for(i = 0; i < 4; i++)
|
|
if(a[i] != b[i])
|
|
return 0;
|
|
return 1;
|
|
}
|