mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
510 B
22 lines
510 B
#include <scan.h> |
|
#include <fmt.h> |
|
#include <buffer.h> |
|
#include <assert.h> |
|
|
|
main() { |
|
char buf[1024]; |
|
unsigned long long int i; |
|
if (sizeof(unsigned long) != 4) |
|
return 0; |
|
for (i=1; i<0xfffffffffull; i+=i+1) { |
|
int k; |
|
unsigned long test; |
|
buf[k=fmt_ulonglong(buf,i)]=0; |
|
buffer_puts(buffer_1,buf); buffer_putnlflush(buffer_1); |
|
if (buf[scan_ulong(buf,&test)]) |
|
/* scan did not like the whole number */ |
|
assert(i>0xffffffffull); |
|
else |
|
assert(i<=0xffffffffull); |
|
} |
|
}
|
|
|