Changeset 1732
- Timestamp:
- Feb 1, 2007, 11:20:48 PM (16 years ago)
- Location:
- zzuf/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/src/fuzz.c
r1730 r1732 45 45 46 46 /* Per-offset byte protection */ 47 static unsignedint *ranges = NULL;48 static unsignedint ranges_static[512];47 static int *ranges = NULL; 48 static int ranges_static[512]; 49 49 50 50 /* Per-value byte protection */ … … 110 110 } 111 111 112 void _zz_fuzz(int fd, volatile uint8_t *buf, uint64_t len)112 void _zz_fuzz(int fd, volatile uint8_t *buf, int64_t len) 113 113 { 114 114 int64_t start, stop; -
zzuf/trunk/src/fuzz.h
r1720 r1732 22 22 extern void _zz_refuse(char const *); 23 23 24 extern void _zz_fuzz(int, volatile uint8_t *, uint64_t);24 extern void _zz_fuzz(int, volatile uint8_t *, int64_t); 25 25 -
zzuf/trunk/src/libzzuf.h
r1719 r1732 39 39 char *tmp; 40 40 #endif 41 int uflag; uint64_t upos; uint8_t uchar; /* ungetc stuff */41 int uflag; int64_t upos; uint8_t uchar; /* ungetc stuff */ 42 42 uint8_t data[CHUNKBYTES]; 43 43 };
Note: See TracChangeset
for help on using the changeset viewer.