Lines Matching defs:bytes
57 print_hex (unsigned char *bytes, unsigned int len, int depth)
61 printf ("array of bytes [\n");
75 printf ("%02x", bytes[i]);
105 unsigned char *bytes = malloc (DEFAULT_SIZE + 1);
117 bytes[len] = val;
126 bytes = realloc (bytes, max + 1);
134 bytes[len] = '\0';
135 printf ("array of bytes \"%s\"\n", bytes);
139 print_hex (bytes, len, depth);
142 free (bytes);