MCPcopy Create free account
hub / github.com/OpenNFS/OpenNFS / hexify

Function hexify

tools/fshtool.c:110–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110void hexify(unsigned char *src,int len,char *dest)
111{
112 while (len--) {
113 *(dest++)="0123456789ABCDEF"[(*src)>>4];
114 *(dest++)="0123456789ABCDEF"[(*src)&15];
115 src++;
116 }
117 *dest=0;
118}
119
120void unquotify(char *src,int len,unsigned char *dest)
121{

Callers 2

makealpha8Function · 0.85
fsh_to_bmpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected