search for: asc_str

Displaying 1 result from an estimated 1 matches for "asc_str".

Did you mean: as_str
1999 Oct 20
3
patch for tinc-0.3
...1 > > /* > * fdump.c -- Dump memory in debug format. > * > * Compile separately and link to program, > * or just include this file. > * > */ > void fdump(FILE *stream, char *adr,int bytecount) > { > int i,j, linecount; > char asc_str[17]; > unsigned char c; > linecount = (bytecount + 15) / 16; > asc_str[16] = '\0'; > for(j=0; j<linecount; j++) { > fprintf(stream, "\n%06d ", adr+16*j); > for(i=0; i<16; i++) { > c...