Searched defs:hex (Results 1 - 1 of 1) sorted by relevance

/httpd/server/
H A Dlog.c1348 unsigned char *hex; local
1355 hex = buf + BYTES_LOGGED_PER_LINE + 1; /* start hex dump here */
1370 *hex = 'a' + ((c >> 4) - 10);
1373 *hex = '0' + (c >> 4);
1377 *(hex + 1) = 'a' + ((c & 0x0F) - 10);
1380 *(hex + 1) = '0' + (c & 0x0F);
1384 hex += 2;

Completed in 17 milliseconds